From 8e8f6b759d5bf5b64793909713d198d673534f1e Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 18 Dec 2004 22:34:50 +0000 Subject: [PATCH] fixed memory usage bug. --- lib/modules/swfrender.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/modules/swfrender.c b/lib/modules/swfrender.c index 552fd1f..f44c79c 100644 --- a/lib/modules/swfrender.c +++ b/lib/modules/swfrender.c @@ -423,7 +423,7 @@ void swf_RenderShape(RENDERBUF*dest, SHAPE2*shape, MATRIX*m, CXFORM*c, U16 _dept nm.r1 *= i->multiply; nm.tx *= i->multiply; nm.ty *= i->multiply; - s2->fillstyles[t].m = nm; //!!!!!!!!!!!!!!!! + s2->fillstyles[t].m = nm; } /* add this shape to the global shape list, for deallocing */ @@ -484,7 +484,7 @@ void swf_RenderShape(RENDERBUF*dest, SHAPE2*shape, MATRIX*m, CXFORM*c, U16 _dept if(DEBUG&4) printf("\n"); } else if(line->type == splineTo) { - int c,t,y,parts,qparts; + int c,t,parts,qparts; double xx,yy; transform_point(&mat, x, y, &x1, &y1); -- 1.7.10.4