summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-12-28 15:26:20 +0000
committerAntony Dovgal <tony2001@php.net>2006-12-28 15:26:20 +0000
commit3dc31987be9cb528f703c538016b0ac579e15757 (patch)
tree54a599135753f2b6aea2c80edce7a762b10bd688
parentea14ce7700c683e4095c24fec7e10c941b23cb3a (diff)
downloadphp-git-3dc31987be9cb528f703c538016b0ac579e15757.tar.gz
it's ptr, not ptrptr
-rw-r--r--ext/fdf/fdf.c4
1 files 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;