diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | locale/programs/linereader.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2007-05-04 Ulrich Drepper <drepper@redhat.com> + + * locale/programs/linereader.c (get_symname): Fix adding final NUL. + (get_ident): Likewise. + 2007-05-03 Jakub Jelinek <jakub@redhat.com> * soft-fp/op-common.h (FP_TRUNC): Replace raising of FP_EX_INEXACT diff --git a/locale/programs/linereader.c b/locale/programs/linereader.c index 6587f7305b..4b38fd283c 100644 --- a/locale/programs/linereader.c +++ b/locale/programs/linereader.c @@ -523,8 +523,8 @@ get_symname (struct linereader *lr) { lr->token.tok = tok_bsymbol; - buf[bufact] = '\0'; buf = xrealloc (buf, bufact + 1); + buf[bufact] = '\0'; lr->token.val.str.startmb = buf; lr->token.val.str.lenmb = bufact - 1; @@ -576,8 +576,8 @@ get_ident (struct linereader *lr) { lr->token.tok = tok_ident; - buf[bufact] = '\0'; buf = xrealloc (buf, bufact + 1); + buf[bufact] = '\0'; lr->token.val.str.startmb = buf; lr->token.val.str.lenmb = bufact; |