Skip to content

Commit d6ece28

Browse files
committed
Merge remote-tracking branch 'upstream/master' into typofixes20130707
2 parents f68e9e8 + 0cf978c commit d6ece28

File tree

7 files changed

+77
-9
lines changed

7 files changed

+77
-9
lines changed

ext/mysqli/tests/mysqli_stmt_big_prepare.phpt

Lines changed: 50 additions & 0 deletions
Large diffs are not rendered by default.

ext/mysqlnd/mysqlnd_ps_codec.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,7 @@ mysqlnd_stmt_execute_store_params(MYSQLND_STMT * s, zend_uchar **buf, zend_uchar
559559
*p += null_count;
560560
}
561561

562+
left = (*buf_len - (*p - *buf));
562563
/* 1. Store type information */
563564
/*
564565
check if need to send the types even if stmt->send_types_to_server is 0. This is because

ext/oci8/package.xml

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
66
<name>oci8</name>
77
<channel>pecl.php.net</channel>
88
<summary>Extension for Oracle Database</summary>
9-
<description>This extension allows you to access Oracle databases. It can be built with PHP 4.3.9 to 5.x. It can be linked with Oracle 9.2, 10.2, 11.1, or 11.2 client libraries.
9+
<description>This extension allows you to access Oracle databases. It can be built with PHP 4.3.9 to 5.x. It can be linked with Oracle 9.2, 10, 11, or 12.1 client libraries.
1010
</description>
1111
<lead>
1212
<name>Christopher Jones</name>
@@ -33,20 +33,20 @@ http://pear.php.net/dtd/package-2.0.xsd">
3333
<active>no</active>
3434
</lead>
3535

36-
<date>2012-10-21</date>
36+
<date>2013-07-08</date>
3737
<time>12:00:00</time>
3838

3939
<version>
40-
<release>1.4.9</release>
41-
<api>1.4.9</api>
40+
<release>1.4.10</release>
41+
<api>1.4.10</api>
4242
</version>
4343
<stability>
4444
<release>stable</release>
4545
<api>stable</api>
4646
</stability>
4747
<license uri="http://www.php.net/license">PHP</license>
4848
<notes>
49-
Re-fixed bug #60901 (Improve "tail" syntax for AIX installation)
49+
Bump PECL package info version check to allow PECL installs with PHP 5.5+
5050
</notes>
5151
<contents>
5252
<dir name="/">
@@ -397,7 +397,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
397397
<required>
398398
<php>
399399
<min>4.3.9</min>
400-
<max>5.4.99</max>
400+
<max>6.0.0</max>
401401
</php>
402402
<pearinstaller>
403403
<min>1.4.0b1</min>
@@ -410,6 +410,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
410410
</extsrcrelease>
411411
<changelog>
412412

413+
<release>
414+
<version>
415+
<release>1.4.9</release>
416+
<api>1.4.9</api>
417+
</version>
418+
<stability>
419+
<release>stable</release>
420+
<api>stable</api>
421+
</stability>
422+
<license uri="http://www.php.net/license">PHP</license>
423+
<notes>
424+
Re-fixed bug #60901 (Improve "tail" syntax for AIX installation)
425+
</notes>
426+
</release>
427+
413428
<release>
414429
<version>
415430
<release>1.4.8</release>

ext/oci8/php_oci8.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
*/
4747
#undef PHP_OCI8_VERSION
4848
#endif
49-
#define PHP_OCI8_VERSION "1.4.9"
49+
#define PHP_OCI8_VERSION "1.4.10"
5050

5151
extern zend_module_entry oci8_module_entry;
5252
#define phpext_oci8_ptr &oci8_module_entry

ext/pgsql/pgsql.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4212,6 +4212,7 @@ PHP_FUNCTION(pg_unescape_bytea)
42124212
to = (char *)php_pgsql_unescape_bytea((unsigned char*)from, &to_len);
42134213
#endif
42144214
if (!to) {
4215+
php_error_docref(NULL TSRMLS_CC, E_WARNING,"Failed to unescape");
42154216
RETURN_FALSE;
42164217
}
42174218
RETVAL_STRINGL(to, to_len, 0);

ext/standard/string.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ PHP_FUNCTION(hex2bin)
280280
result = php_hex2bin((unsigned char *)data, datalen, &newlen);
281281

282282
if (!result) {
283+
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Input string must be hexadecimal string");
283284
RETURN_FALSE;
284285
}
285286

ext/standard/tests/array/array_column_basic.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ array(3) {
178178
*** Testing multiple data types ***
179179
array(8) {
180180
[0]=>
181-
object(stdClass)#1 (0) {
181+
object(stdClass)#%d (0) {
182182
}
183183
[1]=>
184184
float(34.2345)
@@ -197,7 +197,7 @@ array(8) {
197197
}
198198
array(8) {
199199
[1]=>
200-
object(stdClass)#1 (0) {
200+
object(stdClass)#%d (0) {
201201
}
202202
[2]=>
203203
float(34.2345)

0 commit comments

Comments
 (0)