]> granicus.if.org Git - php/commitdiff
This fix wasn't quite right and is no longer necessary after the recent php_ini optim...
authorZeev Suraski <zeev@php.net>
Tue, 5 Sep 2000 21:31:56 +0000 (21:31 +0000)
committerZeev Suraski <zeev@php.net>
Tue, 5 Sep 2000 21:31:56 +0000 (21:31 +0000)
ext/session/session.c

index 2c9b5cc5a6c2eab4037144b585601035d62ba05c..7fc84f4dbec6bcd2320b6548a8a97fb4cb870992 100644 (file)
@@ -108,7 +108,7 @@ static PHP_INI_MH(OnUpdateStringCopy)
 
        p = (char **) (base+(size_t) mh_arg1);
 
-       if (*p && entry->modified) {
+       if (*p && stage != PHP_INI_STAGE_STARTUP) {
                STR_FREE(*p);
        }