aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-07-28 10:05:33 -0700
committerPaul Eggert2011-07-28 10:05:33 -0700
commit66606eea1f69d1b35dfc006c2901f2c7ca08d487 (patch)
tree8249a45870851ca0291778d34c2380987165a2ce /src/ChangeLog
parent21956cce2b7b1d6a6c6777d800e63e62c2fbd594 (diff)
downloademacs-66606eea1f69d1b35dfc006c2901f2c7ca08d487.tar.gz
emacs-66606eea1f69d1b35dfc006c2901f2c7ca08d487.zip
* alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
Without this fix, if a signal arrives just after memory fills up, 'malloc' might be invoked reentrantly.
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 045c4311789..eef9cede561 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12011-07-28 Paul Eggert <eggert@cs.ucla.edu> 12011-07-28 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
4 Without this fix, if a signal arrives just after memory fills up,
5 'malloc' might be invoked reentrantly.
6
3 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1. 7 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
4 In other words, assume that every image size is allowed, on non-X 8 In other words, assume that every image size is allowed, on non-X
5 hosts. This assumption is probably wrong, but it lets Emacs compile. 9 hosts. This assumption is probably wrong, but it lets Emacs compile.