]> granicus.if.org Git - php/commitdiff
More build fixes.
authorIlia Alshanetsky <iliaa@php.net>
Wed, 15 Jan 2003 19:36:13 +0000 (19:36 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Wed, 15 Jan 2003 19:36:13 +0000 (19:36 +0000)
ext/interbase/interbase.c

index 3b314e657c9f26f9be2c5797334f10405e5fc6f4..5fc17d4fddf75bd288a1fc9b77ff1ec4f7d349a4 100644 (file)
@@ -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;
        }
 }