From: Xinchen Hui Date: Tue, 5 Jan 2016 15:02:17 +0000 (+0800) Subject: Fixed bug #71280 (ibase_blob_add() expects parameter 2 to be resorce) X-Git-Tag: php-7.0.3RC1~76 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d4da32d3125f3a2220023bd123cfbabdc2939b71;p=php Fixed bug #71280 (ibase_blob_add() expects parameter 2 to be resorce) --- diff --git a/ext/interbase/ibase_blobs.c b/ext/interbase/ibase_blobs.c index 967a1694c1..630b7330e9 100644 --- a/ext/interbase/ibase_blobs.c +++ b/ext/interbase/ibase_blobs.c @@ -296,7 +296,7 @@ PHP_FUNCTION(ibase_blob_add) RESET_ERRMSG; - if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "rr", &blob_arg, &string_arg)) { + if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "rz", &blob_arg, &string_arg)) { return; }