xml_lpm_fuzzer: Unstuck MallocHook and ReallocHook

.. so that they fail single allocations, not all
allocations after a certain point.  Previously
fail_allocations of [6, 2, 20] worked the same way
fail_allocations of [2], likely by accidently.
This commit is contained in:
Sebastian Pipping 2025-02-03 01:23:41 +01:00
parent 1ed7be5bf7
commit 2a615bc3c5

View file

@ -79,23 +79,23 @@ static std::vector<int> g_fail_allocations = {};
void *
MallocHook(size_t size) {
g_allocation_count += 1;
for (auto index : g_fail_allocations) {
if (index == g_allocation_count) {
return NULL;
}
}
g_allocation_count += 1;
return malloc(size);
}
void *
ReallocHook(void *ptr, size_t size) {
g_allocation_count += 1;
for (auto index : g_fail_allocations) {
if (index == g_allocation_count) {
return NULL;
}
}
g_allocation_count += 1;
return realloc(ptr, size);
}