projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
6c1b65d
)
[NTUSER] Release WinSta->spklList at IntWinStaObjectDelete (#4593)
author
Katayama Hirofumi MZ
<katayama.hirofumi.mz@gmail.com>
Tue, 2 Aug 2022 01:46:37 +0000
(10:46 +0900)
committer
GitHub
<noreply@github.com>
Tue, 2 Aug 2022 01:46:37 +0000
(10:46 +0900)
Call UserAssignmentUnlock((PVOID*)&WinSta->spklList); in IntWinStaObjectDelete function.
CORE-11700
win32ss/user/ntuser/winsta.c
patch
|
blob
|
history
diff --git
a/win32ss/user/ntuser/winsta.c
b/win32ss/user/ntuser/winsta.c
index
88266ad
..
4c91558
100644
(file)
--- a/
win32ss/user/ntuser/winsta.c
+++ b/
win32ss/user/ntuser/winsta.c
@@
-128,6
+128,8
@@
IntWinStaObjectDelete(
RtlDestroyAtomTable(WinSta->AtomTable);
RtlDestroyAtomTable(WinSta->AtomTable);
+ UserAssignmentUnlock((PVOID*)&WinSta->spklList);
+
return STATUS_SUCCESS;
}
return STATUS_SUCCESS;
}