1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

*llist being NULL is not an error

This commit is contained in:
Andrew Tridgell 0001-01-01 00:00:00 +00:00
parent 9020d88493
commit c4d8ad2c2e

View File

@ -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;