aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pidl
diff options
context:
space:
mode:
authorBinh Trinh <beango@gmail.com>2016-06-17 21:46:11 -0400
committerMichael Mann <mmann78@netscape.net>2016-06-18 14:42:35 +0000
commitc07fd447c362099b04eedb445e8fa469643403f7 (patch)
tree45026be011f392dad58b166467c59b8ca0dcc3e2 /tools/pidl
parenta7aaf0ba72ecb1e5e975eabef1ba7ff00f49a198 (diff)
DCE/RPC: fix array of pointers with NULL
Change-Id: Ie89f8fd4ec744d427d41866206d5a6784c5b224f Reviewed-on: https://code.wireshark.org/review/16004 Petri-Dish: Jaap Keuter <jaap.keuter@xs4all.nl> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'tools/pidl')
-rw-r--r--tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm b/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
index 24b61433ea..a62f9563a9 100644
--- a/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
+++ b/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
@@ -229,6 +229,7 @@ sub Bitmap($$$$)
$total_ev += hex($ev);
$self->pidl_code("&$hf_bitname,");
}
+ $self->pidl_code("NULL");
$self->deindent;
$self->pidl_code("};");
}