Merge branch 'alignment-test-nullcheck' into 'master'

Don't accept null pointer in tests when requesting aligned memory

See merge request redox-os/relibc!272
This commit is contained in:
Jeremy Soller
2020-05-24 19:19:12 +00:00
+1 -1
View File
@@ -31,7 +31,7 @@ void test_valid_aligned(void *ptr, size_t alignment, int error_val) {
* address. */
uintptr_t ptr_alignment_rem = (uintptr_t)ptr % (uintptr_t)alignment;
if (ptr_alignment_rem == 0) {
if (ptr != NULL && ptr_alignment_rem == 0) {
// Constant output for successful case
printf("pointer: (alignment OK), ");
}