From b65cb493330307f8028e7e8ae88f312cb47842b3 Mon Sep 17 00:00:00 2001 From: "graham.gower" Date: Thu, 3 Dec 2009 03:04:07 +0000 Subject: [PATCH] Fix truncation problem when reading in long lines. Found by Koen Kooi. After realloc()ing a second time for long lines, buflen was one byte short. It did not take into account buf being pointed at the NULL terminator, before the end of the buffer. So when fgets() was next called, it inserted its NULL terminator one byte earlier than expected. The earlier terminator was not overwritten by subsequent iterations as it should have been. git-svn-id: http://opkg.googlecode.com/svn/trunk@438 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- libopkg/pkg_parse.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libopkg/pkg_parse.c b/libopkg/pkg_parse.c index d01dff5..e0de41f 100644 --- a/libopkg/pkg_parse.c +++ b/libopkg/pkg_parse.c @@ -351,16 +351,17 @@ pkg_parse_from_stream_nomalloc(pkg_t *pkg, FILE *fp, uint mask, } /* - * Realloc and move buf past the data already read. + * Realloc and point buf past the data already read, + * at the NULL terminator inserted by fgets. * |<--------------- buf0len ----------------->| * | |<------- buflen ---->| * |---------------------|---------------------| * buf0 buf */ - buflen = buf0len; + buflen = buf0len +1; buf0len *= 2; *buf0 = xrealloc(*buf0, buf0len); - buf = *buf0 + buflen -1; + buf = *buf0 + buflen -2; continue; } -- 2.25.1