mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[CSRDLL]: Avoid a potential null pointer dereference.
svn path=/trunk/; revision=63681
This commit is contained in:
parent
73d7ba1daf
commit
413950767e
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ CsrClientConnectToServer(IN PWSTR ObjectDirectory,
|
|||
CsrPortHeap = RtlGetProcessHeap();
|
||||
|
||||
/* Tell the caller we're inside the server */
|
||||
*ServerToServerCall = InsideCsrProcess;
|
||||
if (ServerToServerCall) *ServerToServerCall = InsideCsrProcess;
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue