diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d1db5e48daf..7485afb00f4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,16 @@ | |||
| 1 | 2011-07-29 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-07-29 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * term.c: Integer and memory overflow issues. | ||
| 4 | (max_frame_lines): Remove; unused. | ||
| 5 | (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t, | ||
| 6 | not int. | ||
| 7 | (encode_terminal_code, calculate_costs): Check for size | ||
| 8 | calculation overflow. | ||
| 9 | (encode_terminal_code): Use ptrdiff_t, not int, to record glyph | ||
| 10 | table lengths and related sizes. Don't update size until alloc | ||
| 11 | done. Redo calculations to avoid overflow. | ||
| 12 | (calculate_costs): Don't bother calling xmalloc when xrealloc will do. | ||
| 13 | |||
| 3 | * sysdep.c: Integer and memory overflow issues. | 14 | * sysdep.c: Integer and memory overflow issues. |
| 4 | (system_process_attributes): Use ptrdiff_t, not int, for command | 15 | (system_process_attributes): Use ptrdiff_t, not int, for command |
| 5 | line length. Do not attempt to address one before the beginning | 16 | line length. Do not attempt to address one before the beginning |