From: kramm Date: Thu, 1 Jan 2004 09:58:03 +0000 (+0000) Subject: in rfxswflib, SHAPE's gradient is now stored as struct, not as pointer. X-Git-Tag: release-0-5-0~111 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=13f358624c58a5379ef681bf695423901cf34174 in rfxswflib, SHAPE's gradient is now stored as struct, not as pointer. --- diff --git a/src/swfbbox.c b/src/swfbbox.c index fc6de06..de0d96c 100644 --- a/src/swfbbox.c +++ b/src/swfbbox.c @@ -141,8 +141,7 @@ void parseFillStyleArray(TAG*tag, SHAPE2*shape) swf_ResetReadBits(tag); swf_GetMatrix(tag, &dest->m); swf_ResetReadBits(tag); - dest->gradient = malloc(sizeof(GRADIENT)); // TODO: free this again - swf_GetGradient(tag, dest->gradient, num>=3?1:0); + swf_GetGradient(tag, &dest->gradient, num>=3?1:0); } else if(type == 0x40 || type == 0x41) {