From c79f02d899df432d5672bad0bd7f0fed055b5dae Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 28 Sep 2025 12:15:08 +0200 Subject: [PATCH] ucode: fix skipping lines where the timestamp cannot be parsed Skip to the next line Signed-off-by: Felix Fietkau --- lib-ucode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib-ucode.c b/lib-ucode.c index cc1759d..b733580 100644 --- a/lib-ucode.c +++ b/lib-ucode.c @@ -986,7 +986,7 @@ read_again: cur_ptr = &ptr[ptr_ofs]; if (!trace_parse_timestamp(cur_ptr, cur + tr->ts_ofs)) - continue; + goto next_line; cur_ptr->start = data_ofs; cur_ptr->len = strlen(line); -- 2.30.2