mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[WIN32K]
Fix possible NULL pointer free. Fixes solitaire. svn path=/branches/reactos-yarotows/; revision=49257
This commit is contained in:
parent
548559a3d5
commit
2eb1b02bc0
1 changed files with 1 additions and 1 deletions
|
@ -1264,7 +1264,7 @@ NtGdiCreateDIBitmapInternal(
|
||||||
hcmXform);
|
hcmXform);
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
ExFreePoolWithTag(safeBits, TAG_DIB);
|
if (safeBits) ExFreePoolWithTag(safeBits, TAG_DIB);
|
||||||
return hbmResult;
|
return hbmResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue