From 586c8e8bd1b972e9de6702f846d28400c71c7522 Mon Sep 17 00:00:00 2001 From: kramm Date: Thu, 16 Dec 2004 10:45:04 +0000 Subject: [PATCH] added gcc 2.95.x support. --- lib/rfxswf.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/rfxswf.c b/lib/rfxswf.c index 4a409ac..dbf0cd6 100644 --- a/lib/rfxswf.c +++ b/lib/rfxswf.c @@ -1496,10 +1496,11 @@ int swf_WriteCGI(SWF * swf) SWF* swf_CopySWF(SWF*swf) { SWF*nswf = rfx_alloc(sizeof(SWF)); + TAG*tag, *ntag; memcpy(nswf, swf, sizeof(SWF)); nswf->firstTag = 0; - TAG*tag = swf->firstTag; - TAG*ntag = 0; + tag = swf->firstTag; + ntag = 0; while(tag) { ntag = swf_CopyTag(ntag, tag); if(!nswf->firstTag) -- 1.7.10.4