diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 73fc64f37c5..b0c486ab8b2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,15 @@ | |||
| 1 | 2013-07-19 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2013-07-19 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * sysdep.c [GNU_LINUX]: Fix fd and memory leaks and similar issues. | ||
| 4 | (procfs_ttyname): Don't use uninitialized storage if emacs_fopen | ||
| 5 | or fscanf fails. | ||
| 6 | (system_process_attributes): Prefer plain char to unsigned char | ||
| 7 | when either will do. Clean up properly if interrupted or if | ||
| 8 | memory allocations fail. Don't assume sscanf succeeds. Remove | ||
| 9 | no-longer-needed workaround to stop GCC from whining. Read | ||
| 10 | command-line once, instead of multiple times. Check read status a | ||
| 11 | bit more carefully. | ||
| 12 | |||
| 3 | Fix obscure porting bug with varargs functions. | 13 | Fix obscure porting bug with varargs functions. |
| 4 | The code assumed that int is treated like ptrdiff_t in a vararg | 14 | The code assumed that int is treated like ptrdiff_t in a vararg |
| 5 | function, which is not a portable assumption. There was a similar | 15 | function, which is not a portable assumption. There was a similar |