aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2013-05-12 12:17:04 -0700
committerPaul Eggert2013-05-12 12:17:04 -0700
commit44aa9ee6d2c451df9bffa7ff302c624b88d701b4 (patch)
tree1fc3642df2ba5ce8b785b6ca27c5b1435eaff255 /src
parent4506f5e6525ace3603c8d8b7cbb5b7f3cdc2df54 (diff)
downloademacs-44aa9ee6d2c451df9bffa7ff302c624b88d701b4.tar.gz
emacs-44aa9ee6d2c451df9bffa7ff302c624b88d701b4.zip
* image.c (gif_load): Check that subimages fit.
Fixes: debbugs:14345
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/image.c19
2 files changed, 23 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f6685824933..836f6d4b7b8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-05-12 Paul Eggert <eggert@cs.ucla.edu>
2
3 * image.c (gif_load): Check that subimages fit (Bug#14345).
4
12013-05-09 Stefan Monnier <monnier@iro.umontreal.ca> 52013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * lread.c (skip_dyn_eof): New function. 7 * lread.c (skip_dyn_eof): New function.
diff --git a/src/image.c b/src/image.c
index 2dae63a294f..f9f6ce70040 100644
--- a/src/image.c
+++ b/src/image.c
@@ -7263,6 +7263,25 @@ gif_load (struct frame *f, struct image *img)
7263 return 0; 7263 return 0;
7264 } 7264 }
7265 7265
7266 /* Check that the selected subimages fit. It's not clear whether
7267 the GIF spec requires this, but Emacs can crash if they don't fit. */
7268 for (j = 0; j <= idx; ++j)
7269 {
7270 struct SavedImage *subimage = gif->SavedImages + j;
7271 int subimg_width = subimage->ImageDesc.Width;
7272 int subimg_height = subimage->ImageDesc.Height;
7273 int subimg_top = subimage->ImageDesc.Top;
7274 int subimg_left = subimage->ImageDesc.Left;
7275 if (! (0 <= subimg_width && 0 <= subimg_height
7276 && 0 <= subimg_top && subimg_top <= height - subimg_height
7277 && 0 <= subimg_left && subimg_left <= width - subimg_width))
7278 {
7279 image_error ("Subimage does not fit in image", Qnil, Qnil);
7280 fn_DGifCloseFile (gif);
7281 return 0;
7282 }
7283 }
7284
7266 /* Create the X image and pixmap. */ 7285 /* Create the X image and pixmap. */
7267 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap)) 7286 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
7268 { 7287 {