mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Dereference process object.
svn path=/trunk/; revision=13788
This commit is contained in:
parent
95957e5826
commit
d81708951e
1 changed files with 5 additions and 1 deletions
|
@ -854,8 +854,12 @@ QSI_DEF(SystemHandleInformation)
|
||||||
|
|
||||||
if (curSize > Size)
|
if (curSize > Size)
|
||||||
{
|
{
|
||||||
*ReqSize = curSize;
|
|
||||||
DPRINT1("SystemHandleInformation 2\n");
|
DPRINT1("SystemHandleInformation 2\n");
|
||||||
|
*ReqSize = curSize;
|
||||||
|
if (pr != NULL)
|
||||||
|
{
|
||||||
|
ObDereferenceObject(pr);
|
||||||
|
}
|
||||||
return (STATUS_INFO_LENGTH_MISMATCH);
|
return (STATUS_INFO_LENGTH_MISMATCH);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue