mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[SAC] Use NULL for null pointer in last argument in HeadlessDispatch() calls.
This commit is contained in:
parent
5dd0b32799
commit
5214d2fab7
2 changed files with 3 additions and 3 deletions
|
@ -507,7 +507,7 @@ ConMgrProcessInputLine(VOID)
|
|||
&EnablePaging,
|
||||
sizeof(EnablePaging),
|
||||
NULL,
|
||||
0);
|
||||
NULL);
|
||||
if (!NT_SUCCESS(Status)) SAC_DBG(SAC_DBG_INIT, "SAC Display Log failed.\n");
|
||||
}
|
||||
else if (!strncmp(InputBuffer, "cmd", 3))
|
||||
|
|
|
@ -247,7 +247,7 @@ InitializeDeviceData(IN PDEVICE_OBJECT DeviceObject)
|
|||
&EnableData,
|
||||
sizeof(EnableData),
|
||||
NULL,
|
||||
0);
|
||||
NULL);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
/* Bail out if we couldn't even get this far */
|
||||
|
@ -332,7 +332,7 @@ InitializeDeviceData(IN PDEVICE_OBJECT DeviceObject)
|
|||
&EnableData,
|
||||
sizeof(EnableData),
|
||||
NULL,
|
||||
0);
|
||||
NULL);
|
||||
if (!NT_SUCCESS(Status)) SAC_DBG(SAC_DBG_INIT, "Failed dispatch\n");
|
||||
|
||||
/* Bail out */
|
||||
|
|
Loading…
Reference in a new issue