From d9c1da5b0cfc1dad173b4fc8b48d74c8007e8111 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 19 Sep 2001 05:41:51 +0000 Subject: *llist being NULL is not an error (This used to be commit c4d8ad2c2e48ff31dae7477ff02e5bfc013832a9) --- source3/param/loadparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 2856eaf75b..e8831f652a 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -3710,7 +3710,7 @@ BOOL lp_list_substitute(char **list, const char *pattern, const char *insert) char *p, *s, *t; ssize_t ls, lp, li, ld, i, d; - if (!list || !*list) return False; + if (!list) return False; if (!pattern) return False; if (!insert) return False; -- cgit