Check query strings of query-style lookups for quoting. Bug 2850
[exim.git] / src / src / auths / pwcheck.c
index 8e51f17578f6a4564f435d2d64ff31ee801ce184..f2188bb6a3428a797962d3c882528eadaac7ce66 100644 (file)
@@ -291,7 +291,7 @@ static int read_string(int fd, uschar **retval) {
             return -1;
         } else {
            /* Assume the file is trusted, so no tainting */
-            *retval = store_get(count + 1, FALSE);
+            *retval = store_get(count + 1, GET_UNTAINTED);
             rc = (retry_read(fd, *retval, count) < (int) count);
             (*retval)[count] = '\0';
             return count;