mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[WIN32SS] Fix BSOD 0x1E nullptr deref via Git-bash CORE-16586
Thanks to the patches author Doug Lyons!
This commit is contained in:
parent
889eab78ca
commit
870aa1254f
1 changed files with 3 additions and 0 deletions
|
@ -375,6 +375,9 @@ UserClipboardRelease(PWND pWindow)
|
||||||
{
|
{
|
||||||
PWINSTATION_OBJECT pWinStaObj;
|
PWINSTATION_OBJECT pWinStaObj;
|
||||||
|
|
||||||
|
if (!pWindow)
|
||||||
|
return;
|
||||||
|
|
||||||
pWinStaObj = IntGetWinStaForCbAccess();
|
pWinStaObj = IntGetWinStaForCbAccess();
|
||||||
if (!pWinStaObj)
|
if (!pWinStaObj)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue