summaryrefslogtreecommitdiff
path: root/testprogs/win32/rpcecho/server.c
diff options
context:
space:
mode:
Diffstat (limited to 'testprogs/win32/rpcecho/server.c')
-rw-r--r--testprogs/win32/rpcecho/server.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/testprogs/win32/rpcecho/server.c b/testprogs/win32/rpcecho/server.c
index 17b13f0013..b5127596df 100644
--- a/testprogs/win32/rpcecho/server.c
+++ b/testprogs/win32/rpcecho/server.c
@@ -142,9 +142,11 @@ void echo_TestSurrounding(echo_Surrounding *data)
short echo_TestDoublePointer(short ***data)
{
if (!*data) {
+ printf("WARNING: *data == NULL\n");
return 0;
}
if (!**data) {
+ printf("WARNING: **data == NULL\n");
return 0;
}
printf("Incoming double pointer: %d\n", ***data);