Skip to content

Commit e355e55

Browse files
committed
Merge branch 'PHP-7.2' into PHP-7.3
2 parents 78c299a + dd0a809 commit e355e55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/oci8/oci8.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2465,7 +2465,7 @@ int php_oci_column_to_zval(php_oci_out_column *column, zval *value, int mode)
24652465
descriptor = (php_oci_descriptor *) column->descid->ptr;
24662466

24672467
if (!descriptor) {
2468-
php_error_docref(NULL, E_WARNING, "Unable to find LOB descriptor #%d", column->descid);
2468+
php_error_docref(NULL, E_WARNING, "Unable to find LOB descriptor #%d", column->descid->handle);
24692469
return 1;
24702470
}
24712471

ext/oci8/php_oci8.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*/
4444
#undef PHP_OCI8_VERSION
4545
#endif
46-
#define PHP_OCI8_VERSION "2.1.8"
46+
#define PHP_OCI8_VERSION "2.1.9"
4747

4848
extern zend_module_entry oci8_module_entry;
4949
#define phpext_oci8_ptr &oci8_module_entry

0 commit comments

Comments
 (0)