-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevas-1.7.5-giflib5.patch
More file actions
38 lines (34 loc) · 976 Bytes
/
evas-1.7.5-giflib5.patch
File metadata and controls
38 lines (34 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--- ./src/modules/loaders/gif/evas_image_load_gif.c.orig 2013-03-03 10:46:27.693506154 +0000
+++ ./src/modules/loaders/gif/evas_image_load_gif.c 2013-03-03 10:47:23.698508421 +0000
@@ -700,7 +700,7 @@
return EINA_FALSE;
}
- gif = DGifOpenFileHandle(fd);
+ gif = DGifOpenFileHandle(fd,NULL);
if (!gif)
{
if (fd) close(fd);
@@ -838,7 +838,7 @@
return EINA_FALSE;
}
- gif = DGifOpenFileHandle(fd);
+ gif = DGifOpenFileHandle(fd,NULL);
if (!gif)
{
if (fd) close(fd);
@@ -927,7 +927,7 @@
return EINA_FALSE;
}
- gif = DGifOpenFileHandle(fd);
+ gif = DGifOpenFileHandle(fd,NULL);
if (!gif)
{
if (fd) close(fd);
@@ -1000,7 +1000,7 @@
#endif
if (fd < 0) return -1;
- gif = DGifOpenFileHandle(fd);
+ gif = DGifOpenFileHandle(fd,NULL);
if (!gif)
{
if (fd) close(fd);