iliaa Mon Dec 6 14:45:57 2004 EDT Modified files: (Branch: PHP_5_0) /php-src NEWS /php-src/ext/mssql php_mssql.c Log: MFB: revert. http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.142&r2=1.1760.2.143&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.1760.2.142 php-src/NEWS:1.1760.2.143 --- php-src/NEWS:1.1760.2.142 Mon Dec 6 06:52:59 2004 +++ php-src/NEWS Mon Dec 6 14:45:56 2004 @@ -8,7 +8,6 @@ or an object as first parameter. (Andrey) - Fixed potential problems with unserializing invalid serialize data. (Marcus) - Fixed bug #30967 (properties in extended mysqli classes don't work). (Georg) -- Fixed bug #30962 (mssql returns space for NULL columns). (Ilia) - Fixed bug #30922 (reflective functions crash PHP when interfaces extend themselves). (Tony, Dmitry) - Fixed bug #30890 (MySQLi testsuite) http://cvs.php.net/diff.php/php-src/ext/mssql/php_mssql.c?r1=1.137.2.5&r2=1.137.2.6&ty=u Index: php-src/ext/mssql/php_mssql.c diff -u php-src/ext/mssql/php_mssql.c:1.137.2.5 php-src/ext/mssql/php_mssql.c:1.137.2.6 --- php-src/ext/mssql/php_mssql.c:1.137.2.5 Thu Dec 2 21:26:36 2004 +++ php-src/ext/mssql/php_mssql.c Mon Dec 6 14:45:57 2004 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_mssql.c,v 1.137.2.5 2004/12/03 02:26:36 iliaa Exp $ */ +/* $Id: php_mssql.c,v 1.137.2.6 2004/12/06 19:45:57 iliaa Exp $ */ #ifdef COMPILE_DL_MSSQL #define HAVE_MSSQL 1 @@ -800,10 +800,6 @@ char *data = charcol(offset); length=dbdatlen(mssql_ptr->link,offset); - if (!length) { - ZVAL_EMPTY_STRING(result); - break; - } #if ilia_0 while (length>0 && data[length-1] == ' ') { /* nuke trailing whitespace */ length--;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php