From 13f358624c58a5379ef681bf695423901cf34174 Mon Sep 17 00:00:00 2001
From: kramm <kramm>
Date: Thu, 1 Jan 2004 09:58:03 +0000
Subject: [PATCH] in rfxswflib, SHAPE's gradient is now stored as struct, not
 as pointer.

---
 src/swfbbox.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

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)
 	{
-- 
1.7.10.4