summaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-02-27 18:15:36 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-02-27 18:15:36 -0300
commit622e44871069697b5591235c0362c0977db8c3ea (patch)
tree71289f8dc4aabeef27a80fd88861002dff37aca1 /lua.c
parent0fe2576a39633ab7873f9d4fd989f1e5203a5725 (diff)
downloadlua-github-622e44871069697b5591235c0362c0977db8c3ea.tar.gz
removed useless test (argv[i] cannot be NULL when i<argc)
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index 3731b821..3f7093f7 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
/*
-** $Id: lua.c,v 1.186 2010/02/11 17:12:27 roberto Exp roberto $
+** $Id: lua.c,v 1.187 2010/02/18 19:18:41 roberto Exp roberto $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
*/
@@ -374,7 +374,6 @@ static int collectargs (char **argv, int *pi, int *pv, int *pe) {
static int runargs (lua_State *L, char **argv, int n) {
int i;
for (i = 1; i < n; i++) {
- if (argv[i] == NULL) continue;
lua_assert(argv[i][0] == '-');
switch (argv[i][1]) { /* option */
case 'e': {