Sized deallocation: fix a typo.

dealloction -> deallocation.
This commit is contained in:
David Goldblatt 2021-05-03 17:14:47 -07:00 committed by David Goldblatt
parent 12cd13cd41
commit 4f7cb3a413

View File

@ -10,7 +10,7 @@ void safety_check_fail_sized_dealloc(bool current_dealloc, const void *ptr,
safety_check_fail("<jemalloc>: size mismatch detected (true size %zu " safety_check_fail("<jemalloc>: size mismatch detected (true size %zu "
"vs input size %zu), likely caused by application sized " "vs input size %zu), likely caused by application sized "
"dealloction bugs (source address: %p, %s). Suggest building with " "deallocation bugs (source address: %p, %s). Suggest building with "
"--enable-debug or address sanitizer for debugging. Abort.\n", "--enable-debug or address sanitizer for debugging. Abort.\n",
true_size, input_size, ptr, src); true_size, input_size, ptr, src);
} }