aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-06-17 01:10:34 -0700
committerPaul Eggert2011-06-17 01:10:34 -0700
commit67c36fce599fc28e5ae3eca371d034c600265dd2 (patch)
treed33f388c65d9830ef51ed32a608fd1b523081152 /src/ChangeLog
parent93cb6be35e90f37078276fe60142050d9cff524a (diff)
downloademacs-67c36fce599fc28e5ae3eca371d034c600265dd2.tar.gz
emacs-67c36fce599fc28e5ae3eca371d034c600265dd2.zip
* buffer.c (record_overlay_string): Check for size-calculation overflow.
(struct sortstrlist.size, struct sortlist.used): Don't truncate size to int.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index fcb6f66c279..a82ba93320a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -3,7 +3,10 @@
3 * buffer.c (struct sortvec.priority, struct sortstr.priority): 3 * buffer.c (struct sortvec.priority, struct sortstr.priority):
4 Now EMACS_INT, not int. 4 Now EMACS_INT, not int.
5 (compare_overlays, cmp_for_strings): Avoid subtraction overflow. 5 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
6 (struct sortstr.size, record_overlay_string): Don't truncate size to int. 6 (struct sortstr.size, record_overlay_string)
7 (struct sortstrlist.size, struct sortlist.used):
8 Don't truncate size to int.
9 (record_overlay_string): Check for size-calculation overflow.
7 10
82011-06-16 Paul Eggert <eggert@cs.ucla.edu> 112011-06-16 Paul Eggert <eggert@cs.ucla.edu>
9 12