Taint: check on supplied buffer vs. list when extracting elements
[exim.git] / src / src / acl.c
index 9ed005781d7fa535a0cff0d628dcf8de38d0a3de..02251b197281ce65cf8f3b8127cefd38ed7988c5 100644 (file)
@@ -1600,7 +1600,7 @@ an error if options are given for items that don't expect them.
 
 uschar *slash = Ustrchr(arg, '/');
 const uschar *list = arg;
-uschar *ss = string_nextinlist(&list, &sep, big_buffer, big_buffer_size);
+uschar *ss = string_nextinlist(&list, &sep, NULL, 0);
 verify_type_t * vp;
 
 if (!ss) goto BAD_VERIFY;