summaryrefslogtreecommitdiff
path: root/lundump.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-03-10 16:50:19 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-03-10 16:50:19 -0300
commit901da539e51e252bdd6dcfb428b8b473db5e7abc (patch)
tree7cd80b75f6e9908dc7697b4e3a2e8915fa6d1a04 /lundump.c
parent197e249433027e72e5d4ef1a13c4edc6c24bca6c (diff)
downloadlua-github-901da539e51e252bdd6dcfb428b8b473db5e7abc.tar.gz
no need to avoid negative ints in 'LoadInt'
Diffstat (limited to 'lundump.c')
-rw-r--r--lundump.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lundump.c b/lundump.c
index ae2d19f9..3f274817 100644
--- 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;
}