Commit 7b22e04f authored by Nils Goroll's avatar Nils Goroll

For a log overrun, we need to get a fresh VSL cursor also

Hopefully fixes #2586
parent e1a0cd55
......@@ -414,9 +414,11 @@ VUT_Main(struct VUT *vut)
fprintf(stderr, "Log abandoned (vsl)\n");
VSLQ_SetCursor(vut->vslq, NULL);
hascursor = 0;
} else if (i == vsl_e_overrun)
} else if (i == vsl_e_overrun) {
fprintf(stderr, "Log overrun\n");
else
VSLQ_SetCursor(vut->vslq, NULL);
hascursor = 0;
} else
fprintf(stderr, "Error %d from VSLQ_Dispatch()", i);
}
......
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