mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-10-07 15:06:31 +02:00
Fix two typos
This commit is contained in:
parent
86dde60fcf
commit
1a0bb9cbcd
2 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ void *set_pointer_tag(void *ptr, u8 tag) {
|
||||||
return (void *) (((uintptr_t) tag << 56) | (uintptr_t) untag_pointer(ptr));
|
return (void *) (((uintptr_t) tag << 56) | (uintptr_t) untag_pointer(ptr));
|
||||||
}
|
}
|
||||||
|
|
||||||
// This test checks that slab slot allocation uses tag that is distint from tags of its neighbors
|
// This test checks that slab slot allocation uses tag that is distinct from tags of its neighbors
|
||||||
// and from the tag of the previous allocation that used the same slot
|
// and from the tag of the previous allocation that used the same slot
|
||||||
void tag_distinctness() {
|
void tag_distinctness() {
|
||||||
// tag 0 is reserved
|
// tag 0 is reserved
|
||||||
|
|
|
@ -98,7 +98,7 @@ class TestSimpleMemoryCorruption(unittest.TestCase):
|
||||||
self.assertEqual(stderr.decode("utf-8"),
|
self.assertEqual(stderr.decode("utf-8"),
|
||||||
"fatal allocator error: invalid free\n")
|
"fatal allocator error: invalid free\n")
|
||||||
|
|
||||||
def test_invalid_malloc_usable_size_small_quarantene(self):
|
def test_invalid_malloc_usable_size_small_quarantine(self):
|
||||||
_stdout, stderr, returncode = self.run_test(
|
_stdout, stderr, returncode = self.run_test(
|
||||||
"invalid_malloc_usable_size_small_quarantine")
|
"invalid_malloc_usable_size_small_quarantine")
|
||||||
self.assertEqual(returncode, -6)
|
self.assertEqual(returncode, -6)
|
||||||
|
|
Loading…
Add table
Reference in a new issue