summaryrefslogtreecommitdiffstats
path: root/abs/core/imlib2
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2014-12-05 22:04:08 (GMT)
committerBritney Fransen <brfransen@gmail.com>2014-12-05 22:04:08 (GMT)
commit68768fe79a419d64a45e381a70b93945b6a13694 (patch)
tree44cf0d395864bca37a64c1e5fc24723bbeaeadbf /abs/core/imlib2
parent1201f67c4fc5cd3ffbc6b9061cfbcf1367193384 (diff)
downloadlinhes_pkgbuild-68768fe79a419d64a45e381a70b93945b6a13694.zip
linhes_pkgbuild-68768fe79a419d64a45e381a70b93945b6a13694.tar.gz
linhes_pkgbuild-68768fe79a419d64a45e381a70b93945b6a13694.tar.bz2
imlib2: add patch file
Diffstat (limited to 'abs/core/imlib2')
-rw-r--r--abs/core/imlib2/imlib2-giflib51.patch64
1 files changed, 64 insertions, 0 deletions
diff --git a/abs/core/imlib2/imlib2-giflib51.patch b/abs/core/imlib2/imlib2-giflib51.patch
new file mode 100644
index 0000000..1bd8627
--- /dev/null
+++ b/abs/core/imlib2/imlib2-giflib51.patch
@@ -0,0 +1,64 @@
+diff -ruN imlib2-1.4.6.orig/src/modules/loaders/loader_gif.c imlib2-1.4.6/src/modules/loaders/loader_gif.c
+--- imlib2-1.4.6.orig/src/modules/loaders/loader_gif.c 2013-12-21 10:16:10.000000000 +0000
++++ imlib2-1.4.6/src/modules/loaders/loader_gif.c 2014-05-27 09:52:35.857291512 +0000
+@@ -36,7 +36,7 @@
+ #endif
+ if (fd < 0)
+ return 0;
+- gif = DGifOpenFileHandle(fd);
++ gif = DGifOpenFileHandle(fd, NULL);
+ if (!gif)
+ {
+ close(fd);
+@@ -60,13 +60,13 @@
+ h = gif->Image.Height;
+ if (!IMAGE_DIMENSIONS_OK(w, h))
+ {
+- DGifCloseFile(gif);
++ DGifCloseFile(gif, NULL);
+ return 0;
+ }
+ rows = malloc(h * sizeof(GifRowType *));
+ if (!rows)
+ {
+- DGifCloseFile(gif);
++ DGifCloseFile(gif, NULL);
+ return 0;
+ }
+ for (i = 0; i < h; i++)
+@@ -78,7 +78,7 @@
+ rows[i] = malloc(w * sizeof(GifPixelType));
+ if (!rows[i])
+ {
+- DGifCloseFile(gif);
++ DGifCloseFile(gif, NULL);
+ for (i = 0; i < h; i++)
+ {
+ if (rows[i])
+@@ -150,7 +150,7 @@
+ im->data = (DATA32 *) malloc(sizeof(DATA32) * w * h);
+ if (!im->data)
+ {
+- DGifCloseFile(gif);
++ DGifCloseFile(gif, NULL);
+ free(rows);
+ return 0;
+ }
+@@ -181,7 +181,7 @@
+ last_per = (int)per;
+ if (!(progress(im, (int)per, 0, last_y, w, i)))
+ {
+- DGifCloseFile(gif);
++ DGifCloseFile(gif, NULL);
+ for (i = 0; i < h; i++)
+ {
+ free(rows[i]);
+@@ -198,7 +198,7 @@
+ {
+ progress(im, 100, 0, last_y, w, h);
+ }
+- DGifCloseFile(gif);
++ DGifCloseFile(gif, NULL);
+ for (i = 0; i < h; i++)
+ {
+ free(rows[i]);