mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-10 01:01:33 +00:00
Fixed spelling of quarantine
This commit is contained in:
parent
b8fd0a1463
commit
a6adb6be2c
@ -106,7 +106,7 @@ static pthread_spinlock_t quarantine_lock;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// need qasan disabled
|
// need qasan disabled
|
||||||
static int quanratine_push(struct chunk_begin *ck) {
|
static int quarantine_push(struct chunk_begin *ck) {
|
||||||
|
|
||||||
if (ck->requested_size >= QUARANTINE_MAX_BYTES) return 0;
|
if (ck->requested_size >= QUARANTINE_MAX_BYTES) return 0;
|
||||||
|
|
||||||
@ -236,7 +236,7 @@ void __libqasan_free(void *ptr) {
|
|||||||
QASAN_STORE(ptr, n);
|
QASAN_STORE(ptr, n);
|
||||||
int state = QASAN_SWAP(QASAN_DISABLED); // disable qasan for this thread
|
int state = QASAN_SWAP(QASAN_DISABLED); // disable qasan for this thread
|
||||||
|
|
||||||
if (!quanratine_push(p)) {
|
if (!quarantine_push(p)) {
|
||||||
|
|
||||||
if (p->aligned_orig)
|
if (p->aligned_orig)
|
||||||
backend_free(p->aligned_orig);
|
backend_free(p->aligned_orig);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user