aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-04-17 21:25:27 -0700
committerPaul Eggert2011-04-17 21:25:27 -0700
commitc7bda33cad5112de8c093dce0eaf62c84fb32063 (patch)
treec99ec573279ce2a77813d7480a817a48f455e154 /src/ChangeLog
parent000098c13577337d3bb8cb381bd16701dc11cc32 (diff)
downloademacs-c7bda33cad5112de8c093dce0eaf62c84fb32063.tar.gz
emacs-c7bda33cad5112de8c093dce0eaf62c84fb32063.zip
* alloc.c (allocate_buffer): Don't assume sizeof (struct buffer) is a
multiple of sizeof (EMACS_INT); it need not be, if alignof(EMACS_INT) < sizeof (EMACS_INT).
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index fa2aa03233d..81053d74480 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -6,6 +6,9 @@
6 don't formally overflow signed char, to avoid warnings. 6 don't formally overflow signed char, to avoid warnings.
7 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that 7 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
8 can cause Emacs to crash when string overrun checking is enabled. 8 can cause Emacs to crash when string overrun checking is enabled.
9 (allocate_buffer): Don't assume sizeof (struct buffer) is a
10 multiple of sizeof (EMACS_INT); it need not be, if
11 alignof(EMACS_INT) < sizeof (EMACS_INT).
9 12
102011-04-17 Chong Yidong <cyd@stupidchicken.com> 132011-04-17 Chong Yidong <cyd@stupidchicken.com>
11 14