diff options
| author | Paul Eggert | 2011-08-30 22:50:49 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-08-30 22:50:49 -0700 |
| commit | 61bfeeb79dee6b321cb9f2257aeec9d0c1fa5a2f (patch) | |
| tree | c30ce4abf653bc333a5f978bdbcc0d87949e3e64 /src/ChangeLog | |
| parent | 0999621ac510fb0e8e949966ec6ab737b7443ab0 (diff) | |
| download | emacs-61bfeeb79dee6b321cb9f2257aeec9d0c1fa5a2f.tar.gz emacs-61bfeeb79dee6b321cb9f2257aeec9d0c1fa5a2f.zip | |
Avoid the use of snprintf.
* font.c (APPEND_SNPRINTF): Remove.
(font_unparse_xlfd):
* xterm.c (x_io_error_quitter):
Use esnprintf, not snprintf. That way, we don't have to worry
about porting to ancient platforms that lack snprintf.
(x_term_init): Use sprintf, not snprintf.
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 67ec3140cd4..d0f57593220 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2011-08-31 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Avoid the use of snprintf. | ||
| 4 | * font.c (APPEND_SNPRINTF): Remove. | ||
| 5 | (font_unparse_xlfd): | ||
| 6 | * xterm.c (x_io_error_quitter): | ||
| 7 | Use esnprintf, not snprintf. That way, we don't have to worry | ||
| 8 | about porting to ancient platforms that lack snprintf. | ||
| 9 | (x_term_init): Use sprintf, not snprintf. | ||
| 10 | |||
| 1 | 2011-08-30 Paul Eggert <eggert@cs.ucla.edu> | 11 | 2011-08-30 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 12 | ||
| 3 | sprintf-related integer and memory overflow issues (Bug#9412). | 13 | sprintf-related integer and memory overflow issues (Bug#9412). |