mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 22:51:50 +03:00
Avoid pointer arithmetic on void* in test/integration/rallocx.c
This commit is contained in:
parent
86e2e703ff
commit
3a730dfd50
1 changed files with 5 additions and 3 deletions
|
|
@ -95,7 +95,8 @@ TEST_BEGIN(test_zero)
|
|||
"Expected zeroed memory");
|
||||
}
|
||||
if (psz != qsz) {
|
||||
memset(q+psz, FILL_BYTE, qsz-psz);
|
||||
memset((void *)(uintptr_t)q+psz, FILL_BYTE,
|
||||
qsz-psz);
|
||||
psz = qsz;
|
||||
}
|
||||
p = q;
|
||||
|
|
@ -159,8 +160,9 @@ TEST_BEGIN(test_lg_align_and_zero)
|
|||
} else {
|
||||
assert_false(validate_fill(q, 0, 0, MAX_VALIDATE),
|
||||
"Expected zeroed memory");
|
||||
assert_false(validate_fill(q+sz-MAX_VALIDATE, 0, 0,
|
||||
MAX_VALIDATE), "Expected zeroed memory");
|
||||
assert_false(validate_fill(
|
||||
(void *)(uintptr_t)q+sz-MAX_VALIDATE,
|
||||
0, 0, MAX_VALIDATE), "Expected zeroed memory");
|
||||
}
|
||||
p = q;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue