Skip to content

Commit d4da32d

Browse files
committed
Fixed bug #71280 (ibase_blob_add() expects parameter 2 to be resorce)
1 parent 736b91c commit d4da32d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/interbase/ibase_blobs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ PHP_FUNCTION(ibase_blob_add)
296296

297297
RESET_ERRMSG;
298298

299-
if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "rr", &blob_arg, &string_arg)) {
299+
if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "rz", &blob_arg, &string_arg)) {
300300
return;
301301
}
302302

0 commit comments

Comments
 (0)