Skip to content
Snippets Groups Projects
Commit 1e1efda6 authored by rswindell's avatar rswindell
Browse files

Passing NULL instead of pointer for unused parameter.

parent a2b2e8e3
No related branches found
No related tags found
No related merge requests found
......@@ -264,7 +264,7 @@ __declspec(dllexport) void __cdecl VDDDispatch(void)
wrslot, // mailslot handle
&status->outbuf_size, // address of maximum message size
&status->outbuf_full, // address of size of next message
&count, // address of number of messages
NULL, // address of number of messages
NULL // address of read time-out
)) {
status->outbuf_full=0;
......@@ -301,7 +301,7 @@ __declspec(dllexport) void __cdecl VDDDispatch(void)
rdslot, // mailslot handle
NULL, // address of maximum message size
&retval, // address of size of next message
&count, // address of number of messages
NULL, // address of number of messages
NULL // address of read time-out
))
retval=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment