summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/oci8/oci8.c2
-rw-r--r--ext/oci8/php_oci8.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c
index 3e631c0adc..bd46cd2aed 100644
--- a/ext/oci8/oci8.c
+++ b/ext/oci8/oci8.c
@@ -2465,7 +2465,7 @@ int php_oci_column_to_zval(php_oci_out_column *column, zval *value, int mode)
descriptor = (php_oci_descriptor *) column->descid->ptr;
if (!descriptor) {
- php_error_docref(NULL, E_WARNING, "Unable to find LOB descriptor #%d", column->descid);
+ php_error_docref(NULL, E_WARNING, "Unable to find LOB descriptor #%d", column->descid->handle);
return 1;
}
diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h
index 0df48207a5..b1e801ad4c 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.8"
+#define PHP_OCI8_VERSION "2.1.9"
extern zend_module_entry oci8_module_entry;
#define phpext_oci8_ptr &oci8_module_entry