diff options
| author | Paul Eggert <eggert@cs.ucla.edu> | 2011-08-30 22:50:49 -0700 |
|---|---|---|
| committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-08-30 22:50:49 -0700 |
| commit | 61bfeeb79dee6b321cb9f2257aeec9d0c1fa5a2f (patch) | |
| tree | c30ce4abf653bc333a5f978bdbcc0d87949e3e64 /src/ChangeLog | |
| parent | 0999621ac510fb0e8e949966ec6ab737b7443ab0 (diff) | |
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 @@ +2011-08-31 Paul Eggert <eggert@cs.ucla.edu> + + 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. + 2011-08-30 Paul Eggert <eggert@cs.ucla.edu> sprintf-related integer and memory overflow issues (Bug#9412). |
