From d63afba9d3310131a6db65cbac541704f8aad61a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 31 Aug 2000 11:28:17 -0300 Subject: negative stack sizes are invalid, too. --- lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua.c b/lua.c index bfd380c4..8fd014d1 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.46 2000/08/28 17:57:04 roberto Exp roberto $ +** $Id: lua.c,v 1.47 2000/08/29 14:33:31 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -286,7 +286,7 @@ static int handle_argv (char *argv[], struct Options *opt) { static void getstacksize (int argc, char *argv[], struct Options *opt) { if (argc >= 2 && argv[1][0] == '-' && argv[1][1] == 's') { int stacksize = atoi(&argv[1][2]); - if (stacksize == 0) { + if (stacksize <= 0) { fprintf(stderr, "lua: invalid stack size ('%s')\n", &argv[1][2]); exit(EXIT_FAILURE); } -- cgit v1.2.3-55-g6feb