Skip to content

Commit f766ca5

Browse files
committed
[SMSS] Use NULL for NULL pointers.
1 parent c17aeec commit f766ca5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/system/smss/smss.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ SmpExecuteInitialCommand(IN ULONG MuSessionId,
305305
if (!SmApiPort)
306306
{
307307
/* Connect to ourselves, as a client */
308-
Status = SmConnectToSm(0, 0, 0, &SmApiPort);
308+
Status = SmConnectToSm(NULL, NULL, 0, &SmApiPort);
309309
if (!NT_SUCCESS(Status))
310310
{
311311
DPRINT1("SMSS: Unable to connect to SM - Status == %lx\n", Status);

0 commit comments

Comments
 (0)