OSDN Git Service

https://osdn.net/projects/swfed/scm/git/swfed/commits/e7660a31205240d2a493b6d3a2e78b6...
authorYoya <yoya@awm.jp>
Tue, 18 Oct 2016 14:24:46 +0000 (23:24 +0900)
committerYoya <yoya@awm.jp>
Tue, 18 Oct 2016 14:24:46 +0000 (23:24 +0900)
Giflib4 の時、EGifOpen したハンドラに DGifCloseFile していたので EGifCloseFile に修正

src/swf_gif.c

index 630b056..51b4f56 100644 (file)
@@ -325,7 +325,7 @@ gifconv_lossless2gif(void *image_data,
 #if GIFLIB_MAJOR >= 5
         EGifCloseFile(GifFile, NULL);
 #else
-        DGifCloseFile(GifFile);
+        EGifCloseFile(GifFile);
 #endif
     }
     *length = gif_buff.data_offset;