mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	core/profile_select: Avoid uninitialized read in SelectProfile()
The default constructor of UUID doesn't initialize its data members, so we need to directly initialize it to be invalid.
This commit is contained in:
		@@ -13,7 +13,8 @@ ProfileSelectApplet::~ProfileSelectApplet() = default;
 | 
			
		||||
void DefaultProfileSelectApplet::SelectProfile(
 | 
			
		||||
    std::function<void(std::optional<Common::UUID>)> callback) const {
 | 
			
		||||
    Service::Account::ProfileManager manager;
 | 
			
		||||
    callback(manager.GetUser(Settings::values.current_user.GetValue()).value_or(Common::UUID{}));
 | 
			
		||||
    callback(manager.GetUser(Settings::values.current_user.GetValue())
 | 
			
		||||
                 .value_or(Common::UUID{Common::INVALID_UUID}));
 | 
			
		||||
    LOG_INFO(Service_ACC, "called, selecting current user instead of prompting...");
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user