* locale/programs/linereader.c (get_symname): Fix adding final NUL.

(get_ident): Likewise.
This commit is contained in:
Ulrich Drepper 2007-05-05 04:15:31 +00:00
parent 42808a34eb
commit b16dba4c52
2 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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;