From bc0d535f5af395b1282f6ad0302ae4b550c965af Mon Sep 17 00:00:00 2001 From: Christopher Jones Date: Fri, 10 Jun 2011 17:16:00 +0000 Subject: [PATCH] Missed trivial comment sync with PHP_5_4 and trunk --- ext/oci8/oci8_statement.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/oci8/oci8_statement.c b/ext/oci8/oci8_statement.c index 4f36ae176a..bc83624180 100644 --- a/ext/oci8/oci8_statement.c +++ b/ext/oci8/oci8_statement.c @@ -887,7 +887,7 @@ int php_oci_bind_post_exec(void *data TSRMLS_DC) * their reallocation but (i) any IN binds either interned or * not should already be null terminated and (ii) for OUT * binds, php_oci_bind_out_callback() should have allocated a - * new string that can be realloced. + * new string that we can modify here. */ Z_STRVAL_P(bind->zval) = erealloc(Z_STRVAL_P(bind->zval), Z_STRLEN_P(bind->zval)+1); Z_STRVAL_P(bind->zval)[ Z_STRLEN_P(bind->zval) ] = '\0'; -- 2.40.0