com php-src: Fixed uninitialized data causing random crash (Dmitry): ext/oci8/package.xml ext/oci8/php_oci8.h
[email protected] (Christopher Jones)
| Newsgroups | php.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: f4a41fe7502d7659239e569bdac9a9c1edda13f2 Author: Christopher Jones <[email protected]> Wed, 12 Apr 2017 14:02:46 +1000 Parents: 28ddfbb892168fc51ce25b0133e513953a78e66b Branches: PHP-7.0 Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=f4a41fe7502d7659239e569bdac9a9c1edda13f2 Log: Fixed uninitialized data causing random crash (Dmitry) Changed paths: M ext/oci8/package.xml M ext/oci8/php_oci8.h Diff: diff --git a/ext/oci8/package.xml b/ext/oci8/package.xml index da54dfa..d32cfc7 100644 --- a/ext/oci8/package.xml +++ b/ext/oci8/package.xml @@ -46,12 +46,12 @@ Interoperability Support" (ID 207303.1) for details. <active>no</active> </lead> - <date>2016-10-17</date> + <date>2017-04-12</date> <time>12:00:00</time> <version> - <release>2.1.3</release> - <api>2.1.3</api> + <release>2.1.4</release> + <api>2.1.4</api> </version> <stability> <release>stable</release> @@ -60,7 +60,7 @@ Interoperability Support" (ID 207303.1) for details. <license uri="http://www.php.net/license">PHP</license> <notes> This version is for PHP 7 only. -Fixed bug #71148 (Bind reference overwritten on PHP 7) +Fixed uninitialized data causing random crash </notes> <contents> <dir name="/"> @@ -470,6 +470,22 @@ Fixed bug #71148 (Bind reference overwritten on PHP 7) <release> <version> + <release>2.1.3</release> + <api>2.1.3</api> + </version> + <stability> + <release>stable</release> + <api>stable</api> + </stability> + <license uri="http://www.php.net/license">PHP</license> + <notes> +This version is for PHP 7 only. +Fixed bug #71148 (Bind reference overwritten on PHP 7) + </notes> +</release> + +<release> + <version> <release>2.1.2</release> <api>2.1.2</api> </version> diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h index f0564de..4bce161 100644 --- a/ext/oci8/php_oci8.h +++ b/ext/oci8/php_oci8.h @@ -43,7 +43,7 @@ */ #undef PHP_OCI8_VERSION #endif -#define PHP_OCI8_VERSION "2.1.3" +#define PHP_OCI8_VERSION "2.1.4" extern zend_module_entry oci8_module_entry; #define phpext_oci8_ptr &oci8_module_entry