platform: during @abort_parsing goto stop in event_handler_recvmsgs()

Now, that we no longer overwrite @err, we can jump to stop: instead
of out:.
This commit is contained in:
Thomas Haller
2016-02-12 16:41:51 +01:00
parent 329ac02d38
commit 3d759b1f11

View File

@@ -5699,11 +5699,8 @@ continue_reading:
event_seq_check (platform, msg, seq_result); event_seq_check (platform, msg, seq_result);
if (abort_parsing) { if (abort_parsing)
if (!handle_events) goto stop;
goto continue_reading;
goto out;
}
err = 0; err = 0;
hdr = nlmsg_next (hdr, &n); hdr = nlmsg_next (hdr, &n);