Skip to content

Commit 9cfa917

Browse files
author
Rahul Priyadarshi
committed
Segfault due to INTERNED strings in PHP-5.4.x
1 parent 84716d4 commit 9cfa917

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dnl [ --enable-IBM_DB2 Enable IBM_DB2 support])
2020
if test "$PHP_IBM_DB2" != "no"; then
2121
dnl # checking php 32/64 bit php
2222
AC_MSG_CHECKING(PHP)
23-
if test `php -r 'echo PHP_INT_SIZE;'` == 8; then
23+
if test `php -r 'echo PHP_INT_SIZE;'` = 8; then
2424
machine_bits=64
2525
libDir=lib64
2626
AC_MSG_RESULT(Detected 64-bit PHP)

package.xml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,20 @@ Cloudscape, and Apache Derby databases.
2222
<email>[email protected]</email>
2323
<active>yes</active>
2424
</lead>
25-
<date>2012-08-10</date>
26-
<time>12:50:00</time>
25+
<date>2012-11-16</date>
26+
<time>12:02:00</time>
2727
<version>
28-
<release>1.9.4</release>
29-
<api>1.9.4</api>
28+
<release>1.9.5</release>
29+
<api>1.9.5</api>
3030
</version>
3131
<stability>
3232
<release>stable</release>
3333
<api>stable</api>
3434
</stability>
3535
<license>Apache License 2.0</license>
3636
<notes>
37-
Fixed: DB2 PHP driver does not work as expected with values in BIGINT column
38-
Added: test case test_bigint.phpt for BIGINT datatype
39-
Fixed: Persistent connections takes up to 1 hour to reconnect on db2 TSA HA failover
40-
FIxed: Fixed: Allow trial license to connect ZOS/i5
41-
Added a environment variable IBM_DB_HOME to make the installation process easy and config script will automatically detect the architecure for which PHP is built and accordingly use the libraries under lib32/lib64.
37+
Fixed: Segfault due to INTERNED strings in PHP-5.4.x
38+
Enhanced: execute_many API to accept NULL mixed with other values.
4239
</notes>
4340
<contents>
4441
<dir name="/">

0 commit comments

Comments
 (0)