mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-11-04 04:34:07 +01:00 
			
		
		
		
	Merge pull request #6143 from lat9nq/nvhost_null_memcpy
nvhost_ctrl_gpu: Avoid sending null pointer to memcpy
This commit is contained in:
		
						commit
						262a70223f
					
				@ -248,7 +248,13 @@ NvResult nvhost_ctrl_gpu::ZBCSetTable(const std::vector<u8>& input, std::vector<
 | 
			
		||||
    IoctlZbcSetTable params{};
 | 
			
		||||
    std::memcpy(¶ms, input.data(), input.size());
 | 
			
		||||
    // TODO(ogniK): What does this even actually do?
 | 
			
		||||
    std::memcpy(output.data(), ¶ms, output.size());
 | 
			
		||||
 | 
			
		||||
    // Prevent null pointer being passed as arg 1
 | 
			
		||||
    if (output.empty()) {
 | 
			
		||||
        LOG_WARNING(Service_NVDRV, "Avoiding passing null pointer to memcpy");
 | 
			
		||||
    } else {
 | 
			
		||||
        std::memcpy(output.data(), ¶ms, output.size());
 | 
			
		||||
    }
 | 
			
		||||
    return NvResult::Success;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user