From: Ilia Alshanetsky Date: Wed, 15 Jan 2003 19:36:13 +0000 (+0000) Subject: More build fixes. X-Git-Tag: PHP_5_0_dev_before_13561_fix~203 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1351f42efc0578e9d55849badcc8e6ee5f93da8b;p=php More build fixes. --- diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index 3b314e657c..5fc17d4fdd 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -2717,14 +2717,14 @@ static void _php_ibase_blob_end(INTERNAL_FUNCTION_PARAMETERS, int bl_end) } ib_blob->bl_handle = NULL; RETVAL_STRINGL((char *)ib_blob, sizeof(ibase_blob_handle), 1); - zend_list_delete(Z_LVAL_P(blob_arg)); + zend_list_delete(Z_LVAL_PP(blob_arg)); } else { /* discard created blob */ if (isc_cancel_blob(IB_STATUS, &ib_blob->bl_handle)) { _php_ibase_error(TSRMLS_C); RETURN_FALSE; } ib_blob->bl_handle = NULL; - zend_list_delete(Z_LVAL_P(blob_arg)); + zend_list_delete(Z_LVAL_PP(blob_arg)); RETURN_TRUE; } }