X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/de5ba17561e686e5a05c9cc88288c82b563987de..89a80675800115043189ea51437b062d88fa51b7:/src/src/environment.c diff --git a/src/src/environment.c b/src/src/environment.c index 8542dc0d2..c29cc6c8d 100644 --- a/src/src/environment.c +++ b/src/src/environment.c @@ -38,34 +38,35 @@ if (!keep_environment || *keep_environment == '\0') } else if (Ustrcmp(keep_environment, "*") != 0) { - uschar **p; - if (environ) for (p = USS environ; *p; /* see below */) + rmark reset_point = store_mark(); + if (environ) for (uschar ** p = USS environ; *p; /* see below */) { /* It's considered broken if we do not find the '=', according to Florian Weimer. For now we ignore such strings. unsetenv() would complain, getenv() would complain. */ - uschar *eqp = Ustrchr(*p, '='); + uschar * eqp = Ustrchr(*p, '='); if (eqp) { - uschar *name = string_copyn(*p, eqp - *p); + uschar * name = string_copyn(*p, eqp - *p); + if (OK != match_isinlist(name, CUSS &keep_environment, 0, NULL, NULL, MCL_NOEXPAND, FALSE, NULL)) - if (unsetenv(CS name) < 0) return FALSE; + if (os_unsetenv(name) < 0) return FALSE; else p = USS environ; /* RESTART from the beginning */ else p++; - store_reset(name); } } + store_reset(reset_point); } if (add_environment) { - uschar *p; - int sep = 0; - const uschar* envlist = add_environment; - while ((p = string_nextinlist(&envlist, &sep, NULL, 0))) - putenv(CS p); + uschar * p; + int sep = 0; + const uschar * envlist = add_environment; + + while ((p = string_nextinlist(&envlist, &sep, NULL, 0))) putenv(CS p); } - return TRUE; +return TRUE; }