commit 901da539e51e252bdd6dcfb428b8b473db5e7abc
parent 197e249433027e72e5d4ef1a13c4edc6c24bca6c
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Mon, 10 Mar 2014 16:49:54 -0300
no need to avoid negative ints in 'LoadInt'
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/lundump.c b/lundump.c
@@ -1,5 +1,5 @@
/*
-** $Id: lundump.c,v 2.30 2014/03/01 15:18:44 roberto Exp roberto $
+** $Id: lundump.c,v 2.31 2014/03/10 17:56:32 roberto Exp roberto $
** load precompiled Lua chunks
** See Copyright Notice in lua.h
*/
@@ -59,8 +59,6 @@ static lu_byte LoadByte (LoadState *S) {
static int LoadInt (LoadState *S) {
int x;
LoadVar(S, x);
- if (x < 0)
- error(S, "corrupted");
return x;
}