mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #5626 from zhaowenlan1779/deliver-arg-fix
service/apt: Fix deliver arg hmac size
This commit is contained in:
		
						commit
						7ae0fc7338
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -532,7 +532,7 @@ void Module::APTInterface::ReceiveDeliverArg(Kernel::HLERequestContext& ctx) { | |||
| 
 | ||||
|     auto arg = apt->applet_manager->ReceiveDeliverArg().value_or(AppletManager::DeliverArg{}); | ||||
|     arg.param.resize(param_size); | ||||
|     arg.hmac.resize(std::max<std::size_t>(hmac_size, 0x20)); | ||||
|     arg.hmac.resize(std::min<std::size_t>(hmac_size, 0x20)); | ||||
| 
 | ||||
|     IPC::RequestBuilder rb = rp.MakeBuilder(4, 4); | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue