mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-16 07:10:40 +00:00
Fix deref in sceNpMatching2CreateContext (#10539)
This commit is contained in:
parent
6a7324ab3e
commit
a34201ebff
@ -1055,7 +1055,7 @@ error_code sceNpMatching2GrantRoomOwner(
|
||||
error_code sceNpMatching2CreateContext(
|
||||
vm::cptr<SceNpId> npId, vm::cptr<SceNpCommunicationId> commId, vm::cptr<SceNpCommunicationPassphrase> passPhrase, vm::ptr<SceNpMatching2ContextId> ctxId, s32 option)
|
||||
{
|
||||
sceNp2.warning("sceNpMatching2CreateContext(npId=*0x%x, commId=*0x%x(%s), passPhrase=*0x%x, ctxId=*0x%x, option=%d)", npId, commId, commId->data, ctxId, option);
|
||||
sceNp2.warning("sceNpMatching2CreateContext(npId=*0x%x, commId=*0x%x(%s), passPhrase=*0x%x, ctxId=*0x%x, option=%d)", npId, commId, commId ? commId->data : "", ctxId, option);
|
||||
|
||||
auto& nph = g_fxo->get<named_thread<np_handler>>();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user