fix error in getopt with no arguments
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@839 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
e716896a18
commit
3afb380432
|
@ -103,7 +103,7 @@ static boolean g_binitialized = FALSE;
|
|||
|
||||
int getopt(int argc, FAR char *const argv[], FAR const char *optstring)
|
||||
{
|
||||
if (argv && optstring)
|
||||
if (argv && optstring && argc > 1)
|
||||
{
|
||||
int noarg_ret = '?';
|
||||
char *optchar;
|
||||
|
|
Loading…
Reference in New Issue