Commit 173c6344 by Richard Stallman

(finclude): Set fp->buf earlier, so it's freed on error.

From-SVN: r2348
parent c9d929d7
......@@ -4087,6 +4087,7 @@ finclude (f, fname, op, system_header_p, dirptr)
st_size = 0;
basep = (U_CHAR *) xmalloc (bsize + 2);
fp->buf = basep; /* So it will get freed, on error. */
bufp = basep;
for (;;) {
......@@ -4100,10 +4101,10 @@ finclude (f, fname, op, system_header_p, dirptr)
if (bsize == st_size) { /* Buffer is full! */
bsize *= 2;
basep = (U_CHAR *) xrealloc (basep, bsize + 2);
fp->buf = basep;
bufp = basep + st_size; /* May have moved */
}
}
fp->buf = basep;
fp->bufp = fp->buf;
fp->length = st_size;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment