From: Christophe de Dinechin <dinechin@xxxxxxxxxx> I also added a catch-all clause for double plus extra safety Signed-off-by: Christophe de Dinechin <dinechin@xxxxxxxxxx> --- src/spice-streaming-agent.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/spice-streaming-agent.cpp b/src/spice-streaming-agent.cpp index f9d8855..26fa910 100644 --- a/src/spice-streaming-agent.cpp +++ b/src/spice-streaming-agent.cpp @@ -623,10 +623,14 @@ int main(int argc, char* argv[]) FrameLog frame_log(log_filename, log_binary); agent.CaptureLoop(streamfd, frame_log); } - catch (std::runtime_error &err) { + catch (std::exception &err) { syslog(LOG_ERR, "%s\n", err.what()); ret = EXIT_FAILURE; } + catch (...) { + syslog(LOG_ERR, "Unexpected exception caught (probably thronw by plugin init"); + ret = EXIT_FAILURE; + } closelog(); return ret; -- 2.13.5 (Apple Git-94) _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel