diff options
author | Antony Dovgal <tony2001@php.net> | 2006-12-28 15:26:20 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-12-28 15:26:20 +0000 |
commit | 3dc31987be9cb528f703c538016b0ac579e15757 (patch) | |
tree | 54a599135753f2b6aea2c80edce7a762b10bd688 | |
parent | ea14ce7700c683e4095c24fec7e10c941b23cb3a (diff) | |
download | php-git-3dc31987be9cb528f703c538016b0ac579e15757.tar.gz |
it's ptr, not ptrptr
-rw-r--r-- | ext/fdf/fdf.c | 4 |
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; |