Skip to content
Snippets Groups Projects
Commit f0faddf6 authored by Sergey Bronnikov's avatar Sergey Bronnikov Committed by Yaroslav Lobankov
Browse files

test/fuzz: fix xrow_header_decode_fuzzer

On 2.10 branch xrow_header_decode_fuzzer fails with segmentation fault
in diag.c:diag_get() due to a missed fiber structure. This happens in
2.10 only because commit 508138b7 ("fiber: initialize
thread-local cord on demand") was not backported to 2.10.

The patch adds initialization of fiber like we do in unit tests and thus
fixes segmentation fault.

NO_CHANGELOG=testing
NO_DOC=testing
parent 5e2a0b49
No related branches found
No related tags found
No related merge requests found
#include "box/iproto_constants.h"
#include "box/xrow.h"
#include "memory.h"
#include "fiber.h"
void
cord_on_yield(void) {}
......@@ -10,12 +11,14 @@ static void
setup(void)
{
memory_init();
fiber_init(fiber_c_invoke);
}
__attribute__((destructor))
static void
teardown(void)
{
fiber_free();
memory_free();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment