From ce4f1497341b797126645de5bafa6ebd2dcb5f27 Mon Sep 17 00:00:00 2001 From: "Thies C. Arntzen" Date: Fri, 5 Nov 1999 08:48:09 +0000 Subject: [PATCH] (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 --- ext/sybase/sybase.c | 3 +++ 1 file changed, 3 insertions(+) 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 */ -- 2.40.0