Browse Source

gpssim: fix seg fault if not enough arguments

happens with e.g. 'gpssim -f'
sbg
ChristophTobler 8 years ago committed by Beat Küng
parent
commit
6843155357
  1. 10
      src/platforms/posix/drivers/gpssim/gpssim.cpp

10
src/platforms/posix/drivers/gpssim/gpssim.cpp

@ -558,11 +558,6 @@ usage(const char *reason) @@ -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[]) @@ -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.
*/

Loading…
Cancel
Save