From 6af59d0d232e33b2be61a6dc96e7918993dd28d5 Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Tue, 11 Jun 2002 21:19:41 +0000 Subject: Revert Erik's patch to vasprintf and fix the real issue. The writer for the stream returned by open_memstream was supposed to keep the buffer nul-terminated. I apparently left out a statement. --- libc/stdio/stdio.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libc/stdio/stdio.c') diff --git a/libc/stdio/stdio.c b/libc/stdio/stdio.c index 60d4fe73b..1462874f0 100644 --- a/libc/stdio/stdio.c +++ b/libc/stdio/stdio.c @@ -643,6 +643,7 @@ static ssize_t oms_write(void *cookie, const char *buf, size_t bufsize) if (COOKIE->pos > COOKIE->eof) { *COOKIE->sizeloc = COOKIE->eof = COOKIE->pos; + COOKIE->buf[COOKIE->eof] = 0; /* Need to nul-terminate. */ } return bufsize; -- cgit v1.2.3