diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-11 16:59:20 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-11 16:59:20 -0200 |
commit | 321c7fb6f8e09d95be236f4206e520b613dc4d04 (patch) | |
tree | cab4d70149458edf74e34b8c7445a5e74d704e2f /liolib.c | |
parent | dabb19fc17acee55f9052c5d17ec07360cec809d (diff) | |
download | lua-321c7fb6f8e09d95be236f4206e520b613dc4d04.tar.gz lua-321c7fb6f8e09d95be236f4206e520b613dc4d04.tar.bz2 lua-321c7fb6f8e09d95be236f4206e520b613dc4d04.zip |
details
Diffstat (limited to 'liolib.c')
-rw-r--r-- | liolib.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: liolib.c,v 1.96 2000/12/22 17:32:28 roberto Exp roberto $ | 2 | ** $Id: liolib.c,v 1.97 2001/01/10 16:58:11 roberto Exp roberto $ |
3 | ** Standard I/O (and system) library | 3 | ** Standard I/O (and system) library |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -278,7 +278,7 @@ static int read_line (lua_State *L, FILE *f) { | |||
278 | 278 | ||
279 | static void read_file (lua_State *L, FILE *f) { | 279 | static void read_file (lua_State *L, FILE *f) { |
280 | size_t len = 0; | 280 | size_t len = 0; |
281 | size_t size = BUFSIZ; | 281 | size_t size = LUAL_BUFFERSIZE; |
282 | char *buffer = NULL; | 282 | char *buffer = NULL; |
283 | for (;;) { | 283 | for (;;) { |
284 | char *newbuffer = (char *)realloc(buffer, size); | 284 | char *newbuffer = (char *)realloc(buffer, size); |
@@ -299,8 +299,8 @@ static void read_file (lua_State *L, FILE *f) { | |||
299 | static int read_chars (lua_State *L, FILE *f, size_t n) { | 299 | static int read_chars (lua_State *L, FILE *f, size_t n) { |
300 | char *buffer; | 300 | char *buffer; |
301 | size_t n1; | 301 | size_t n1; |
302 | char statbuff[BUFSIZ]; | 302 | char statbuff[LUAL_BUFFERSIZE]; |
303 | if (n <= BUFSIZ) | 303 | if (n <= LUAL_BUFFERSIZE) |
304 | buffer = statbuff; | 304 | buffer = statbuff; |
305 | else { | 305 | else { |
306 | buffer = (char *)malloc(n); | 306 | buffer = (char *)malloc(n); |