From: Antony Dovgal Date: Thu, 28 Dec 2006 15:26:20 +0000 (+0000) Subject: it's ptr, not ptrptr X-Git-Tag: RELEASE_1_0_0RC1~462 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3dc31987be9cb528f703c538016b0ac579e15757;p=php it's ptr, not ptrptr --- diff --git a/ext/fdf/fdf.c b/ext/fdf/fdf.c index ddcc04a14d..c337467fea 100644 --- a/ext/fdf/fdf.c +++ b/ext/fdf/fdf.c @@ -1818,10 +1818,10 @@ PHP_FUNCTION(fdf_enum_values) { if (!zend_is_callable(callback, 0, &name)) { convert_to_string(&name); php_error_docref1(NULL TSRMLS_CC, Z_STRVAL(name), E_WARNING, "Second argument is expected to be a valid callback"); - zval_ptr_dtor(&name); + zval_dtor(&name); RETURN_FALSE; } - zval_ptr_dtor(&name); + zval_dtor(&name); FDF_G(enum_callback) = callback; FDF_G(enum_fdf) = fdf;