summarylogtreecommitdiffstats
path: root/giflib-5.1.0.patch
blob: 06505689af0850a0195503e50111de1be98f3ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff -up src/windowmaker-crm-git/wrlib/load_gif.c.orig src/windowmaker-crm-git/wrlib/load_gif.c
--- src/windowmaker-crm-git/wrlib/load_gif.c.orig	2014-06-18 04:27:12.000000000 -0600
+++ src/windowmaker-crm-git/wrlib/load_gif.c	2014-06-18 04:27:37.000000000 -0600
@@ -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;
 }