Check query strings of query-style lookups for quoting. Bug 2850
[exim.git] / src / src / auths / xtextencode.c
index 30ff8f11ddb039401f34d74c1e2ccfea0e1210ff..46f9c021cfe6871e044facaef7be42abf9a60552 100644 (file)
@@ -40,7 +40,7 @@ in order to get the right amount of store. */
 while (c -- > 0)
   count += ((x = *p++) < 33 || x > 127 || x == '+' || x == '=')? 3 : 1;
 
-pp = code = store_get(count, is_tainted(clear));
+pp = code = store_get(count, clear);
 
 p = US clear;
 c = len;