aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-07-28 18:13:10 -0700
committerPaul Eggert2011-07-28 18:13:10 -0700
commit5f2ab479cdd2e76862e80e37b9c0825471af8d4c (patch)
tree794acd034534a978fe96e8fd54de2a823b096514 /src/ChangeLog
parent1d5689025c709551296684432b04d1ad39e90c71 (diff)
downloademacs-5f2ab479cdd2e76862e80e37b9c0825471af8d4c.tar.gz
emacs-5f2ab479cdd2e76862e80e37b9c0825471af8d4c.zip
* search.c: Integer and memory overflow fixes.
(Freplace_match): Check for size calculation overflow. (Fset_match_data): Don't assume list lengths fit in 'int'.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a80c370e0ad..7570b0ba979 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12011-07-29 Paul Eggert <eggert@cs.ucla.edu> 12011-07-29 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * search.c: Integer and memory overflow fixes.
4 (Freplace_match): Check for size calculation overflow.
5 (Fset_match_data): Don't assume list lengths fit in 'int'.
6
3 * scroll.c: Integer and memory overflow fixes. 7 * scroll.c: Integer and memory overflow fixes.
4 (do_line_insertion_deletion_costs): Check for size calculation overflow. 8 (do_line_insertion_deletion_costs): Check for size calculation overflow.
5 Don't bother calling xmalloc when xrealloc will do. 9 Don't bother calling xmalloc when xrealloc will do.