diff options
| author | vanhauser-thc <vh@thc.org> | 2021-03-05 10:21:28 +0100 |
|---|---|---|
| committer | vanhauser-thc <vh@thc.org> | 2021-03-05 10:21:28 +0100 |
| commit | 3e5ac0af5237bbd01abc30538add248ee0bf1735 (patch) | |
| tree | 471ce7de27024788367f2b7f0931f8debbce7904 | |
| parent | f848562732337c2d3c71ace4667b3130574f0fe4 (diff) | |
| download | afl++-3e5ac0af5237bbd01abc30538add248ee0bf1735.tar.gz | |
no static for rt initialized markers
| -rw-r--r-- | instrumentation/afl-compiler-rt.o.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/instrumentation/afl-compiler-rt.o.c b/instrumentation/afl-compiler-rt.o.c index 87bf6486..664c942d 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -129,10 +129,10 @@ static u32 __afl_debug; /* Already initialized markers */ -static u32 __afl_already_initialized_shm; -static u32 __afl_already_initialized_forkserver; -static u32 __afl_already_initialized_first; -static u32 __afl_already_initialized_second; +u32 __afl_already_initialized_shm; +u32 __afl_already_initialized_forkserver; +u32 __afl_already_initialized_first; +u32 __afl_already_initialized_second; /* Dummy pipe for area_is_valid() */ |
