mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	xts_archive: Remove redundant std::string constructor
We can just call the .data() member of path instead of constructing a completely new string.
This commit is contained in:
		
							parent
							
								
									8714d40a77
								
							
						
					
					
						commit
						03b73aa575
					
				@ -93,8 +93,7 @@ Loader::ResultStatus NAX::Parse(std::string_view path) {
 | 
			
		||||
    std::size_t i = 0;
 | 
			
		||||
    for (; i < sd_keys.size(); ++i) {
 | 
			
		||||
        std::array<Core::Crypto::Key128, 2> nax_keys{};
 | 
			
		||||
        if (!CalculateHMAC256(nax_keys.data(), sd_keys[i].data(), 0x10, std::string(path).c_str(),
 | 
			
		||||
                              path.size())) {
 | 
			
		||||
        if (!CalculateHMAC256(nax_keys.data(), sd_keys[i].data(), 0x10, path.data(), path.size())) {
 | 
			
		||||
            return Loader::ResultStatus::ErrorNAXKeyHMACFailed;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user