sixd                                     Fri, 10 Jun 2011 17:16:00 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=312016

Log:
Missed trivial comment sync with PHP_5_4 and trunk

Changed paths:
    U   php/php-src/branches/PHP_5_3/ext/oci8/oci8_statement.c

Modified: php/php-src/branches/PHP_5_3/ext/oci8/oci8_statement.c
===================================================================
--- php/php-src/branches/PHP_5_3/ext/oci8/oci8_statement.c      2011-06-10 
14:55:34 UTC (rev 312015)
+++ php/php-src/branches/PHP_5_3/ext/oci8/oci8_statement.c      2011-06-10 
17:16:00 UTC (rev 312016)
@@ -887,7 +887,7 @@
                 * 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';

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to