DNS: explicit alloc/free of workspace
[exim.git] / src / src / string.c
index 7af87f92c2ce5fffff843d85e4f2c84d93e7d228..afdb517a25e146bd4d64e114c3eb2117cb324ed9 100644 (file)
@@ -575,7 +575,7 @@ uschar *
 string_copy_dnsdomain(uschar *s)
 {
 uschar *yield;
-uschar *ss = yield = store_get(Ustrlen(s) + 1, is_tainted(s));
+uschar *ss = yield = store_get(Ustrlen(s) + 1, TRUE);  /* always treat as tainted */
 
 while (*s != 0)
   {