mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 05:05:00 +00:00
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:
parent
1ed7be5bf7
commit
2a615bc3c5
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue