Fix return type of zend_ini_dtor

This commit is contained in:
Nikita Popov 2018-06-02 13:41:09 +02:00
parent c03ee19230
commit adb09c98d2

View file

@ -278,7 +278,7 @@ ZEND_API int zend_parse_ini_string(char *str, zend_bool unbuffered_errors, int s
/* {{{ zval_ini_dtor()
*/
static int zval_ini_dtor(zval *zv)
static void zval_ini_dtor(zval *zv)
{
if (Z_TYPE_P(zv) == IS_STRING) {
zend_string_release(Z_STR_P(zv));