diff options
| author | Paul Eggert | 2012-12-02 15:11:42 -0800 |
|---|---|---|
| committer | Paul Eggert | 2012-12-02 15:11:42 -0800 |
| commit | 2dd2e62273983693076360e1bc4e59a0f9184c68 (patch) | |
| tree | 5d841624594f6b9152ea619c8f663a189be95cdd /src/ChangeLog | |
| parent | db47d5e975dc5bd647f7c6132e7f9eb196f2614f (diff) | |
| download | emacs-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/ChangeLog | 7 |
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 @@ | |||
| 1 | 2012-12-02 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2012-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): |