mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +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;
|
||||
|
||||
if (!pWindow)
|
||||
return;
|
||||
|
||||
pWinStaObj = IntGetWinStaForCbAccess();
|
||||
if (!pWinStaObj)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue