diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-28 09:21:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:18 -0500 |
commit | 3761974ed8f93ada47355c20d2403aa966339d7c (patch) | |
tree | b20b4943f3c6c92386ebdd79dbb1504a9df94f80 | |
parent | cc869963e8db57ac4048c3a4bc9f943582574c99 (diff) | |
download | samba-3761974ed8f93ada47355c20d2403aa966339d7c.tar.gz samba-3761974ed8f93ada47355c20d2403aa966339d7c.tar.bz2 samba-3761974ed8f93ada47355c20d2403aa966339d7c.zip |
r5051: initialise all elements of an array (thanks to Mike Allan for pointing
this out)
(This used to be commit 7bd4ced313592310475b7403b87c7606afb1b7c1)
-rw-r--r-- | source4/build/pidl/parser.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/pidl/parser.pm b/source4/build/pidl/parser.pm index ac29fe0285..f17953e7d2 100644 --- a/source4/build/pidl/parser.pm +++ b/source4/build/pidl/parser.pm @@ -1692,7 +1692,7 @@ sub FunctionTable($) pidl "\t},\n"; } } - pidl "\t{ NULL, 0, NULL, NULL }\n};\n\n"; + pidl "\t{ NULL, 0, NULL, NULL, NULL }\n};\n\n"; # If no endpoint is set, default to the interface name as a named pipe if (! defined $interface->{PROPERTIES}->{endpoint}) { |