summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Jones <christopher.jones@oracle.com>2017-04-12 14:02:46 +1000
committerChristopher Jones <christopher.jones@oracle.com>2017-04-12 14:02:46 +1000
commitf4a41fe7502d7659239e569bdac9a9c1edda13f2 (patch)
treebdbb3ec590cc27dd745246681f8f8c2ec45aaf64
parent28ddfbb892168fc51ce25b0133e513953a78e66b (diff)
downloadphp-git-f4a41fe7502d7659239e569bdac9a9c1edda13f2.tar.gz
Fixed uninitialized data causing random crash (Dmitry)
-rw-r--r--ext/oci8/package.xml24
-rw-r--r--ext/oci8/php_oci8.h2
2 files changed, 21 insertions, 5 deletions
diff --git a/ext/oci8/package.xml b/ext/oci8/package.xml
index da54dfa707..d32cfc7bc8 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 f0564de995..4bce161eb5 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