mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[USERSRV] HardError: Free WindowTitleU buffer only if we really allocated it.
This commit is contained in:
parent
704baed2df
commit
7cb411e88f
1 changed files with 4 additions and 2 deletions
|
@ -641,8 +641,10 @@ UserpFormatMessages(
|
|||
CaptionStringU->Length = (USHORT)(wcslen(CaptionStringU->Buffer) * sizeof(WCHAR));
|
||||
|
||||
/* Free the strings if needed */
|
||||
if (WindowTitleU.Buffer) RtlFreeUnicodeString(&WindowTitleU);
|
||||
if (hProcess) RtlFreeUnicodeString(&FileNameU);
|
||||
if (WindowTitleU.Buffer && (WindowTitleU.MaximumLength != 0))
|
||||
RtlFreeUnicodeString(&WindowTitleU);
|
||||
if (hProcess)
|
||||
RtlFreeUnicodeString(&FileNameU);
|
||||
|
||||
Format2A.Buffer = NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue