mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 05:05:00 +00:00
xml_lpm_fuzzer: Mark variable "fail_allocations" as global
This commit is contained in:
parent
2bb8a29428
commit
da8219b9af
1 changed files with 5 additions and 5 deletions
|
@ -74,10 +74,10 @@ void SetEncoding(const xml_lpm_fuzzer::Encoding& e) {
|
|||
}
|
||||
|
||||
static int g_allocation_count = 0;
|
||||
static std::vector<int> fail_allocations = {};
|
||||
static std::vector<int> g_fail_allocations = {};
|
||||
|
||||
void* MallocHook(size_t size) {
|
||||
for (auto index : fail_allocations) {
|
||||
for (auto index : g_fail_allocations) {
|
||||
if (index == g_allocation_count) {
|
||||
return NULL;
|
||||
}
|
||||
|
@ -87,7 +87,7 @@ void* MallocHook(size_t size) {
|
|||
}
|
||||
|
||||
void* ReallocHook(void* ptr, size_t size) {
|
||||
for (auto index : fail_allocations) {
|
||||
for (auto index : g_fail_allocations) {
|
||||
if (index == g_allocation_count) {
|
||||
return NULL;
|
||||
}
|
||||
|
@ -389,9 +389,9 @@ DEFINE_TEXT_PROTO_FUZZER(const xml_lpm_fuzzer::Testcase& testcase) {
|
|||
}
|
||||
|
||||
g_allocation_count = 0;
|
||||
fail_allocations.clear();
|
||||
g_fail_allocations.clear();
|
||||
for (size_t i = 0; i < testcase.fail_allocations_size(); ++i) {
|
||||
fail_allocations.push_back(testcase.fail_allocations(i));
|
||||
g_fail_allocations.push_back(testcase.fail_allocations(i));
|
||||
}
|
||||
|
||||
SetEncoding(testcase.encoding());
|
||||
|
|
Loading…
Add table
Reference in a new issue