Check query strings of query-style lookups for quoting. Bug 2850
[exim.git] / src / src / lookups / json.c
index 7f2478b63045a3acf38108b7b47f4cf0b553b8fc..e53ddc21957af65930bb198ca4d486fa99c119d1 100644 (file)
@@ -24,7 +24,7 @@ Assume that the file is trusted, so no tainting */
 static void *
 json_malloc(size_t nbytes)
 {
-void * p = store_get((int)nbytes, FALSE);
+void * p = store_get((int)nbytes, GET_UNTAINTED);
 /* debug_printf("%s %d: %p\n", __FUNCTION__, (int)nbytes, p); */
 return p;
 }