From 89f98c099576591f8f65b9526d0f24de6dec95e8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 26 Oct 2000 10:53:55 -0200 Subject: in function `read_file', realloc() doesn't free the buffer if it can't allocate new memory --- liolib.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'liolib.c') diff --git a/liolib.c b/liolib.c index b1fddebe..d71965a6 100644 --- a/liolib.c +++ b/liolib.c @@ -1,5 +1,5 @@ /* -** $Id: liolib.c,v 1.87 2000/10/20 16:39:03 roberto Exp roberto $ +** $Id: liolib.c,v 1.88 2000/10/26 12:47:05 roberto Exp roberto $ ** Standard I/O (and system) library ** See Copyright Notice in lua.h */ @@ -345,9 +345,12 @@ static void read_file (lua_State *L, FILE *f) { size_t size = BUFSIZ; char *buffer = NULL; for (;;) { - buffer = (char *)realloc(buffer, size); - if (buffer == NULL) + char *newbuffer = (char *)realloc(buffer, size); + if (newbuffer == NULL) { + free(buffer); lua_error(L, "not enough memory to read a file"); + } + buffer = newbuffer; len += fread(buffer+len, sizeof(char), size-len, f); if (len < size) break; /* did not read all it could */ size *= 2; -- cgit v1.2.3-55-g6feb