Skip to content

Commit

Permalink
Merge pull request #14342 from ANR2ME/adhoc_matching
Browse files Browse the repository at this point in the history
[AdhocMatching] Fix crashing issue when leaving a multiplayer game room
  • Loading branch information
hrydgard authored Apr 3, 2021
2 parents 0c40e91 + 7a84486 commit e846c6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/HLE/sceNetAdhoc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7253,7 +7253,7 @@ int matchingInputThread(int matchingId) // TODO: The MatchingInput thread is usi
// Iterate Message List
int msg_count = 0;
ThreadMessage* msg = context->input_stack;
for (; msg != NULL; msg = msg->next)
while (msg != NULL)
{
// Default Optional Data
void* opt = NULL;
Expand Down

0 comments on commit e846c6a

Please sign in to comment.