]> granicus.if.org Git - php/commitdiff
Getting rid of memset.
authorFrank M. Kromann <fmk@php.net>
Wed, 9 May 2001 16:20:34 +0000 (16:20 +0000)
committerFrank M. Kromann <fmk@php.net>
Wed, 9 May 2001 16:20:34 +0000 (16:20 +0000)
ext/mssql/php_mssql.c

index bf5c77e555e33c940acc84484ac6815fb255f08f..e8c90d7efb9b1988153dd5314f82797e1757c71e 100644 (file)
@@ -760,13 +760,8 @@ static void php_mssql_get_column_content_with_type(mssql_link *mssql_ptr,int off
                                if (column_type == SQLDATETIME) res_length += 10;
                        
                                res_buf = (char *) emalloc(res_length);
-                               memset(res_buf, 0, res_length + 1);
-                               dbconvert(NULL,column_type,dbdata(mssql_ptr->link,offset), res_length,SQLCHAR,res_buf,-1);
-               
-                               while (res_length>0 && (res_buf[res_length-1] == ' ' || res_buf[res_length-1] == 0)) { /* nuke trailing whitespace */
-                                       res_length--;
-                               }
-                               res_buf[res_length] = 0;
+                               res_length = dbconvert(NULL,column_type,dbdata(mssql_ptr->link,offset), res_length,SQLCHAR,res_buf,-1);
+
                                result->value.str.val = res_buf;
                                result->value.str.len = res_length;
                                result->type = IS_STRING;
@@ -806,14 +801,9 @@ static void php_mssql_get_column_content_without_type(mssql_link *mssql_ptr,int
                if (column_type == SQLDATETIM4) res_length += 14;
                if (column_type == SQLDATETIME) res_length += 10;
                
-               res_buf = (unsigned char *) emalloc(res_length+1);
-               memset(res_buf, 0, res_length + 1);
-               dbconvert(NULL,coltype(offset),dbdata(mssql_ptr->link,offset), res_length, SQLCHAR,res_buf,-1);
-               
-               while (res_length>0 && (res_buf[res_length-1] == ' ' || res_buf[res_length-1] == 0)) { /* nuke trailing whitespace */
-                       res_length--;
-               }
-               res_buf[res_length] = 0;
+               res_buf = (unsigned char *) emalloc(res_length);
+               res_length = dbconvert(NULL,coltype(offset),dbdata(mssql_ptr->link,offset), res_length, SQLCHAR,res_buf,-1);
+
                result->value.str.val = res_buf;
                result->value.str.len = res_length;
                result->type = IS_STRING;