boardd: fix segfault when SIGINT with no pandas (#22914)

* boardd: fix segfault when SIGINT with no pandas

* remove if block

Co-authored-by: Robbe Derks <robbe.derks@gmail.com>
old-commit-hash: 8e12b9ca76
commatwo_master
Willem Melching 3 years ago committed by GitHub
parent ba50fb04dc
commit 37c7137220
  1. 5
      selfdrive/boardd/boardd.cc

@ -669,6 +669,11 @@ int main(int argc, char* argv[]) {
}
}
if (pandas.size() == 0) {
// do_exit was set while not connected to a panda
return 0;
}
peripheral_panda = pandas[0];
LOGW("connected to board");

Loading…
Cancel
Save