mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 14:08:22 +00:00
- Deference pProcess not Process.
svn path=/trunk/; revision=38495
This commit is contained in:
parent
e28ed99f1b
commit
d1f64418a1
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ NtCreateProfile(OUT PHANDLE ProfileHandle,
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
/* Dereference the process object if it was specified */
|
/* Dereference the process object if it was specified */
|
||||||
if (Process) ObDereferenceObject(Process);
|
if (pProcess) ObDereferenceObject(pProcess);
|
||||||
|
|
||||||
/* Return Status */
|
/* Return Status */
|
||||||
return Status;
|
return Status;
|
||||||
|
|
Loading…
Reference in a new issue