From 49493a2dcfb2cd1758b69b13d9006ead3be0e066 Mon Sep 17 00:00:00 2001 From: Lior Kaplan Date: Fri, 1 Jan 2016 19:19:27 +0200 Subject: Happy new year (Update copyright to 2016) --- ext/interbase/ibase_blobs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/interbase/ibase_blobs.c') diff --git a/ext/interbase/ibase_blobs.c b/ext/interbase/ibase_blobs.c index 20d5404a15..c6f895bea3 100644 --- a/ext/interbase/ibase_blobs.c +++ b/ext/interbase/ibase_blobs.c @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2015 The PHP Group | + | Copyright (c) 1997-2016 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | -- cgit v1.2.1 From d4da32d3125f3a2220023bd123cfbabdc2939b71 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Tue, 5 Jan 2016 23:02:17 +0800 Subject: Fixed bug #71280 (ibase_blob_add() expects parameter 2 to be resorce) --- ext/interbase/ibase_blobs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/interbase/ibase_blobs.c') 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; } -- cgit v1.2.1