Files
pkgsrc-ng/wm/windowmaker/patches/patch-wrlib_load__gif.c
2016-01-21 23:40:00 +01:00

25 lines
573 B
C

$NetBSD: patch-wrlib_load__gif.c,v 1.1 2014/10/07 16:11:11 adam Exp $
Fix build with giflib 5.1 and newer.
--- wrlib/load_gif.c.orig 2014-10-07 12:55:29.000000000 +0000
+++ wrlib/load_gif.c
@@ -81,7 +81,7 @@ RImage *RLoadGIF(const char *file, int i
}
if (gif->SWidth < 1 || gif->SHeight < 1) {
- DGifCloseFile(gif);
+ DGifCloseFile(gif, NULL);
RErrorCode = RERR_BADIMAGEFILE;
return NULL;
}
@@ -216,7 +216,7 @@ RImage *RLoadGIF(const char *file, int i
free(buffer);
if (gif)
- DGifCloseFile(gif);
+ DGifCloseFile(gif, NULL);
return image;
}