Skip to content

Commit adb09c9

Browse files
committed
Fix return type of zend_ini_dtor
1 parent c03ee19 commit adb09c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_ini_parser.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ ZEND_API int zend_parse_ini_string(char *str, zend_bool unbuffered_errors, int s
278278

279279
/* {{{ zval_ini_dtor()
280280
*/
281-
static int zval_ini_dtor(zval *zv)
281+
static void zval_ini_dtor(zval *zv)
282282
{
283283
if (Z_TYPE_P(zv) == IS_STRING) {
284284
zend_string_release(Z_STR_P(zv));

0 commit comments

Comments
 (0)