]> granicus.if.org Git - php/commitdiff
MFB: revert.
authorIlia Alshanetsky <iliaa@php.net>
Mon, 6 Dec 2004 19:45:57 +0000 (19:45 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Mon, 6 Dec 2004 19:45:57 +0000 (19:45 +0000)
NEWS
ext/mssql/php_mssql.c

diff --git a/NEWS b/NEWS
index 26329613e76ca39ff0ce125ec6a39756e4ac52b7..f48838fcf4dc34f58f73bd36f77aa86503245568 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -8,7 +8,6 @@ PHP                                                                        NEWS
   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)
index 09c1bf8f52adf3d49e21201ad3f508949c52f397..ebb9d9a82bf34fd65abbaa30b6755ce2e0b618aa 100644 (file)
@@ -800,10 +800,6 @@ static void php_mssql_get_column_content_with_type(mssql_link *mssql_ptr,int off
                        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--;