diff options
-rw-r--r-- | ext/standard/basic_functions.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index a188f73668..7ee3a8c5cb 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -456,7 +456,9 @@ PHP_FUNCTION(getenv) #endif pval *str; char *ptr; +#if APACHE SLS_FETCH(); +#endif if (ARG_COUNT(ht) != 1 || getParameters(ht, 1, &str) == FAILURE) { WRONG_PARAM_COUNT; @@ -1177,7 +1179,9 @@ void php3_flush(HashTable *) PHP_FUNCTION(flush) #endif { +#if APACHE SLS_FETCH(); +#endif #if APACHE # if MODULE_MAGIC_NUMBER > 19970110 |