diff options
author | b1gr3db <73140724+b1gr3db@users.noreply.github.com> | 2021-08-13 13:53:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-13 13:53:22 -0400 |
commit | a6adb6be2c41df57dd2912c06940231506a6f030 (patch) | |
tree | ea7940b46956638249d8ee510968888ecc32187c | |
parent | b8fd0a1463fe5805d22f323777b65b7b2e2fcf46 (diff) | |
download | afl++-a6adb6be2c41df57dd2912c06940231506a6f030.tar.gz |
Fixed spelling of quarantine
-rw-r--r-- | qemu_mode/libqasan/malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu_mode/libqasan/malloc.c b/qemu_mode/libqasan/malloc.c index 6fe6fc8c..5893a4e5 100644 --- a/qemu_mode/libqasan/malloc.c +++ b/qemu_mode/libqasan/malloc.c @@ -106,7 +106,7 @@ static pthread_spinlock_t quarantine_lock; #endif // 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; @@ -236,7 +236,7 @@ void __libqasan_free(void *ptr) { QASAN_STORE(ptr, n); int state = QASAN_SWAP(QASAN_DISABLED); // disable qasan for this thread - if (!quanratine_push(p)) { + if (!quarantine_push(p)) { if (p->aligned_orig) backend_free(p->aligned_orig); |