aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorGerd Moellmann2000-01-01 10:09:45 +0000
committerGerd Moellmann2000-01-01 10:09:45 +0000
commit63cec32f8d8c30fb562e946f4c66713905dee081 (patch)
treed88fe5847e34f8bbfe3b1344b1cee0a56fc1faf2 /src/ChangeLog
parent3998eed0c79c6b68e94e8739fa1f1e08e8f09a69 (diff)
downloademacs-63cec32f8d8c30fb562e946f4c66713905dee081.tar.gz
emacs-63cec32f8d8c30fb562e946f4c66713905dee081.zip
(gif_load): Avoid sign extension and thus out of bounds
color indices when accessing raster pixels. (gif_image_p, png_image_p, jpeg_image_p, tiff_image_p): Allow only one of :file or :data. (enum pbm_keyword_index): Add PBM_DATA. (pbm_format): Add :data. (pbm_image_p): Allow either :file or :data. (pbm_read_file): New function. (pbm_scan_number): Rewritten to read from string. (pbm_load): Support :data.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3eaef5446c6..ac718260d59 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,6 +2,14 @@
2 2
3 * xfns.c (gif_load): Avoid sign extension and thus out of bounds 3 * xfns.c (gif_load): Avoid sign extension and thus out of bounds
4 color indices when accessing raster pixels. 4 color indices when accessing raster pixels.
5 (gif_image_p, png_image_p, jpeg_image_p, tiff_image_p): Allow only
6 one of :file or :data.
7 (enum pbm_keyword_index): Add PBM_DATA.
8 (pbm_format): Add :data.
9 (pbm_image_p): Allow either :file or :data.
10 (pbm_read_file): New function.
11 (pbm_scan_number): Rewritten to read from string.
12 (pbm_load): Support :data.
5 13
61999-12-31 Gerd Moellmann <gerd@gnu.org> 141999-12-31 Gerd Moellmann <gerd@gnu.org>
7 15