Convert more cases of list-walking to use self-assigned memory for the list-item
[exim.git] / src / src / auths / plaintext.c
index 778e6c2c43a7a328031b24b71249e216a4609f19..ab703daec6aae645fb959cd9c3c7f325b7be25a4 100644 (file)
@@ -109,7 +109,7 @@ already been provided as part of the AUTH command. For the rest, send them
 out as prompts, and get a data item back. If the data item is "*", abandon the
 authentication attempt. Otherwise, split it into items as above. */
 
-while (  (s = string_nextinlist(&prompts, &sep, big_buffer, big_buffer_size))
+while (  (s = string_nextinlist(&prompts, &sep, NULL, 0))
       && expand_nmax < EXPAND_MAXN)
   if (number++ > expand_nmax)
     if ((rc = auth_prompt(CUS s)) != OK)