summaryrefslogtreecommitdiff
path: root/ext/oci8
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2011-06-10 17:16:00 +0000
committerChristopher Jones <sixd@php.net>2011-06-10 17:16:00 +0000
commitbc0d535f5af395b1282f6ad0302ae4b550c965af (patch)
treed6da86f05c15848d7c6187909b81f5fcbf625c4d /ext/oci8
parent60857e013b66953d5c5a7195e9e9539236f14eed (diff)
downloadphp-git-bc0d535f5af395b1282f6ad0302ae4b550c965af.tar.gz
Missed trivial comment sync with PHP_5_4 and trunk
Diffstat (limited to 'ext/oci8')
-rw-r--r--ext/oci8/oci8_statement.c2
1 files changed, 1 insertions, 1 deletions
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';