aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2012-12-02 15:11:42 -0800
committerPaul Eggert2012-12-02 15:11:42 -0800
commit2dd2e62273983693076360e1bc4e59a0f9184c68 (patch)
tree5d841624594f6b9152ea619c8f663a189be95cdd /src/ChangeLog
parentdb47d5e975dc5bd647f7c6132e7f9eb196f2614f (diff)
downloademacs-2dd2e62273983693076360e1bc4e59a0f9184c68.tar.gz
emacs-2dd2e62273983693076360e1bc4e59a0f9184c68.zip
Fix xpalloc confusion after memory is exhausted.
* alloc.c (xpalloc): Comment fix. * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory and signals an error, do not clear charset_table_size, as charset_table is still valid. * doprnt.c (evxprintf): Clear *BUF after freeing it.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 27453ab8a16..d5794b513e6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,12 @@
12012-12-02 Paul Eggert <eggert@cs.ucla.edu> 12012-12-02 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Fix xpalloc confusion after memory is exhausted.
4 * alloc.c (xpalloc): Comment fix.
5 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
6 and signals an error, do not clear charset_table_size, as
7 charset_table is still valid.
8 * doprnt.c (evxprintf): Clear *BUF after freeing it.
9
3 Use execve to avoid need to munge environ (Bug#13054). 10 Use execve to avoid need to munge environ (Bug#13054).
4 * callproc.c (Fcall_process): 11 * callproc.c (Fcall_process):
5 * process.c (create_process): 12 * process.c (create_process):