diff options
author | Tim Potter <tpot@samba.org> | 2005-11-10 03:37:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:00 -0500 |
commit | 16a9bfd33f52cb398c6d3d3472d9dbe53927370d (patch) | |
tree | 0a8d4a44d8992003bc88966c0b110daabd0bd1fa | |
parent | a7f37f09302ee2b5a49b66b5b7e2d69d3b6c5354 (diff) | |
download | samba-16a9bfd33f52cb398c6d3d3472d9dbe53927370d.tar.gz samba-16a9bfd33f52cb398c6d3d3472d9dbe53927370d.tar.bz2 samba-16a9bfd33f52cb398c6d3d3472d9dbe53927370d.zip |
r11625: NULL terminate list of strings. For some reason this wasn't causing a
crash on i386 but was on ia64.
(This used to be commit 12c77bb2e17ef3cb3264da86852832dffb5474c1)
-rw-r--r-- | source4/torture/local/util_strlist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/torture/local/util_strlist.c b/source4/torture/local/util_strlist.c index eb1de2b7c1..bf888da797 100644 --- a/source4/torture/local/util_strlist.c +++ b/source4/torture/local/util_strlist.c @@ -29,6 +29,7 @@ static const char *test_lists_shell_strings[] = { "foo bar \"bla \"", "foo \"\" bla", "bla \"\"\"\" blie", + NULL }; static BOOL test_lists_shell(TALLOC_CTX *mem_ctx) |