We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2ade6b commit 84a7239Copy full SHA for 84a7239
lib/koops_stacktrace.c
@@ -479,22 +479,6 @@ sr_koops_stacktrace_parse_modules(const char **input)
479
480
local_input++;
481
482
- /* If the next line does not start with space and there wasn't
483
- * any space before the newline either, then the last module was
484
- * split into two parts and we need to read the rest */
485
- if (*local_input != ' ' && ws == 0 && result_offset > 0)
486
- {
487
- char *therest;
488
- if (!sr_parse_char_cspan(&local_input, " \t\n[", &therest))
489
490
- break; /* wtf? */
491
- }
492
-
493
- char *tmp = sr_asprintf("%s%s", result[result_offset-1], therest);
494
- free(result[result_offset-1]);
495
- result[result_offset-1] = tmp;
496
497
498
ws = sr_skip_char_span(&local_input, " \t");
499
}
500
else
0 commit comments