aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/image.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index cc3f2e15915..857c7ae7eaf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12006-05-25 Chong Yidong <cyd@stupidchicken.com>
2
3 * image.c (png_load): Don't call fclose on NULL.
4
12006-05-25 Luc Teirlinck <teirllm@auburn.edu> 52006-05-25 Luc Teirlinck <teirllm@auburn.edu>
2 6
3 * fns.c (Fyes_or_no_p): 7 * fns.c (Fyes_or_no_p):
diff --git a/src/image.c b/src/image.c
index c317418326f..70ffabc1937 100644
--- a/src/image.c
+++ b/src/image.c
@@ -6104,7 +6104,6 @@ png_load (f, img)
6104 { 6104 {
6105 image_error ("Cannot open image file `%s'", file, Qnil); 6105 image_error ("Cannot open image file `%s'", file, Qnil);
6106 UNGCPRO; 6106 UNGCPRO;
6107 fclose (fp);
6108 return 0; 6107 return 0;
6109 } 6108 }
6110 6109