lua

A copy of the Lua development repository
Log | Files | Refs | README

commit d63afba9d3310131a6db65cbac541704f8aad61a
parent 100bfec39a3de3029a97e645e7fe33877d7bbc2f
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu, 31 Aug 2000 11:27:55 -0300

negative stack sizes are invalid, too.

Diffstat:
Mlua.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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); }