Commit eb649cb3 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Bail out on this error.

parent 3ed6c35b
......@@ -765,8 +765,10 @@ MGT_Run(void)
}
i = mgt_SHM_Commit();
if (i != 0)
if (i != 0) {
MGT_complain(C_ERR, "Could not commit SHM file");
return;
}
i = vev_schedule(mgt_evb);
if (i != 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment