From 3dc31987be9cb528f703c538016b0ac579e15757 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Thu, 28 Dec 2006 15:26:20 +0000 Subject: [PATCH] it's ptr, not ptrptr --- ext/fdf/fdf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.50.1