mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[SMSS] Use NULL for NULL pointers.
This commit is contained in:
parent
c17aeec031
commit
f766ca5e42
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ SmpExecuteInitialCommand(IN ULONG MuSessionId,
|
|||
if (!SmApiPort)
|
||||
{
|
||||
/* Connect to ourselves, as a client */
|
||||
Status = SmConnectToSm(0, 0, 0, &SmApiPort);
|
||||
Status = SmConnectToSm(NULL, NULL, 0, &SmApiPort);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("SMSS: Unable to connect to SM - Status == %lx\n", Status);
|
||||
|
|
Loading…
Reference in a new issue