gpssim: fix seg fault if not enough arguments

happens with e.g. 'gpssim -f'
This commit is contained in:
ChristophTobler 2017-10-02 16:03:59 +02:00 committed by Beat Küng
parent 2436a27848
commit 6843155357

View File

@ -558,11 +558,6 @@ usage(const char *reason)
int
gpssim_main(int argc, char *argv[])
{
if (argc < 2) {
gpssim::usage("not enough arguments supplied");
return 1;
}
// set to default
const char *device_name = GPS_DEFAULT_UART_PORT;
bool fake_gps = false;
@ -595,6 +590,11 @@ gpssim_main(int argc, char *argv[])
}
}
if (myoptind >= argc) {
gpssim::usage("not enough arguments supplied");
return 1;
}
/*
* Start/load the driver.
*/