From: Thies C. Arntzen Date: Fri, 5 Nov 1999 08:48:09 +0000 (+0000) Subject: (php3_sybase_get_column_content) initialize buffer before call to dbconvert() X-Git-Tag: php-4.0b3_RC2~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce4f1497341b797126645de5bafa6ebd2dcb5f27;p=php (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 --- diff --git a/ext/sybase/sybase.c b/ext/sybase/sybase.c index 95a48562b7..afc0239b53 100644 --- a/ext/sybase/sybase.c +++ b/ext/sybase/sybase.c @@ -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 */