]> granicus.if.org Git - php/commitdiff
Missed trivial comment sync with PHP_5_4 and trunk
authorChristopher Jones <sixd@php.net>
Fri, 10 Jun 2011 17:16:00 +0000 (17:16 +0000)
committerChristopher Jones <sixd@php.net>
Fri, 10 Jun 2011 17:16:00 +0000 (17:16 +0000)
ext/oci8/oci8_statement.c

index 4f36ae176a248b5d7ecfd21dbb132abcb9bba8b6..bc836241805eca8936041d8c08ebe2ca68264771 100644 (file)
@@ -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';