summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2006-02-04 08:21:16 +0000
committerJakub Jelinek <jakub@redhat.com>2006-02-04 08:21:16 +0000
commitd5c779c6b33b2e40af1a4905ad037085bd235220 (patch)
tree936157318dd4dc3df12be740b865927e8f8fc4c4 /manual
parentf085204b8476ace8e9653c6a96dd5330da5bd672 (diff)
Updated to fedora-glibc-20060204T0758
Diffstat (limited to 'manual')
-rw-r--r--manual/stdio.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/manual/stdio.texi b/manual/stdio.texi
index e4278b7a32..c471209134 100644
--- a/manual/stdio.texi
+++ b/manual/stdio.texi
@@ -2357,7 +2357,8 @@ make_message (char *name, char *value)
@{
/* @r{Reallocate buffer now that we know
how much space is needed.} */
- buffer = (char *) xrealloc (buffer, nchars + 1);
+ size = nchars + 1;
+ buffer = (char *) xrealloc (buffer, size);
if (buffer != NULL)
/* @r{Try again.} */