diff options
author | Derick Rethans <derick@php.net> | 2004-02-14 12:35:59 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2004-02-14 12:35:59 +0000 |
commit | ac9f4cc2afd741743473dc7e33532ad61483ee34 (patch) | |
tree | 833679d55b06ee353f37028392619877f3840298 | |
parent | 3781af53cd6ec7b68a3bb8469556aae6166e0c54 (diff) | |
download | php-git-ac9f4cc2afd741743473dc7e33532ad61483ee34.tar.gz |
- We always need to destroy the llist though.
-rw-r--r-- | main/php_ini.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_ini.c b/main/php_ini.c index d1c2872931..5fb95c71d8 100644 --- a/main/php_ini.c +++ b/main/php_ini.c @@ -519,8 +519,8 @@ int php_init_config() strcat(php_ini_scanned_files, *(char **)element->data); strcat(php_ini_scanned_files, element->next ? ",\n" : "\n"); } - zend_llist_destroy(&scanned_ini_list); } + zend_llist_destroy(&scanned_ini_list); } } return SUCCESS; |