(php3_sybase_get_column_content) initialize buffer before call to dbconvert()

@- Fixed garbage returned at the end of certain Sybase-Columns (Thies)
@  Patch submitted by: neal@wanlink.com
This commit is contained in:
Thies C. Arntzen 1999-11-05 08:48:09 +00:00
parent 1890a59cd6
commit ce4f149734

View File

@ -620,6 +620,9 @@ static void php3_sybase_get_column_content(sybase_link *sybase_ptr,int offset,pv
}
res_buf = (char *) emalloc(res_length+1);
memset(res_buf,' ',res_length+1); /* XXX i'm sure there's a better way
but i don't have sybase here to test
991105 thies@digicol.de */
dbconvert(NULL,coltype(offset),dbdata(sybase_ptr->link,offset), res_length,SYBCHAR,res_buf,-1);
/* get rid of trailing spaces */