Skip to content

Commit ec7c179

Browse files
committed
Revert "zlog: fix free“. will be in another PR
This reverts commit 9fccc56.
1 parent 9fccc56 commit ec7c179

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

sapi/fpm/fpm/fpm_conf.c

+1-4
Original file line numberDiff line numberDiff line change
@@ -1630,10 +1630,7 @@ int fpm_conf_load_ini_file(char *filename) /* {{{ */
16301630
tmp = zend_parse_ini_string(buf, 1, ZEND_INI_SCANNER_NORMAL, (zend_ini_parser_cb_t)fpm_conf_ini_parser, &error);
16311631
ini_filename = filename;
16321632
if (error || tmp == FAILURE) {
1633-
if (ini_include) {
1634-
free(ini_include);
1635-
ini_include = NULL;
1636-
}
1633+
if (ini_include) free(ini_include);
16371634
ini_recursion--;
16381635
close(fd);
16391636
free(buf);

0 commit comments

Comments
 (0)