[host] app: prevent double call to stopThreads

This commit is contained in:
Geoffrey McRae 2021-01-21 16:27:57 +11:00
parent 98ea8b0bb8
commit 9965a4a3a6

View File

@ -599,7 +599,8 @@ int app_main(int argc, char * argv[])
if (!captureRestart())
{
exitcode = LG_HOST_EXIT_FAILED;
goto finish;
stopThreads();
goto fail_capture;
}
app.state = APP_STATE_RUNNING;
}
@ -626,20 +627,18 @@ int app_main(int argc, char * argv[])
case CAPTURE_RESULT_ERROR:
DEBUG_ERROR("Capture interface reported a fatal error");
exitcode = LG_HOST_EXIT_FAILED;
goto finish;
goto fail_capture;
}
}
if (app.state != APP_STATE_SHUTDOWN)
DEBUG_INFO("No subscribers, going to sleep...");
captureStop();
}
exitcode = app.exitcode;
finish:
stopThreads();
fail_capture:
lgTimerDestroy(app.lgmpTimer);