mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-19 02:32:44 +03:00
Revert "Skip invalid commandline args instead of aborting"
This reverts commit 4ad94124a6
.
This commit is contained in:
parent
d7907bfe4c
commit
b962d3db82
@ -734,10 +734,8 @@ nsoption_commandline(int *pargc, char **argv, struct nsoption_s *opts)
|
||||
|
||||
/* check we have an option */
|
||||
/* option must start -- and be as long as the shortest option*/
|
||||
if ((arglen < (2+5) ) || (arg[0] != '-') || (arg[1] != '-')) {
|
||||
idx++;
|
||||
continue;
|
||||
}
|
||||
if ((arglen < (2+5) ) || (arg[0] != '-') || (arg[1] != '-'))
|
||||
break;
|
||||
|
||||
arg += 2; /* skip -- */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user