added gcc 2.95.x support.
authorkramm <kramm>
Thu, 16 Dec 2004 10:45:04 +0000 (10:45 +0000)
committerkramm <kramm>
Thu, 16 Dec 2004 10:45:04 +0000 (10:45 +0000)
lib/rfxswf.c

index 4a409ac..dbf0cd6 100644 (file)
@@ -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)