Merge pull request #5851 from akallabeth/multi_disconnect_crash_fix

Fixed missing NULL set of pointer after free
This commit is contained in:
Martin Fleisz 2020-01-21 15:19:10 +01:00 committed by GitHub
commit c68c50d762
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -394,6 +394,7 @@ BOOL rdp_client_disconnect(rdpRdp* rdp)
return FALSE;
codecs_free(context->codecs);
context->codecs = NULL;
return TRUE;
}