Move memory corruption tests up a directory
This commit is contained in:
12
test/unaligned_malloc_usable_size_small.c
Normal file
12
test/unaligned_malloc_usable_size_small.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include <malloc.h>
|
||||
|
||||
#include "test_util.h"
|
||||
|
||||
OPTNONE int main(void) {
|
||||
char *p = malloc(16);
|
||||
if (!p) {
|
||||
return 1;
|
||||
}
|
||||
malloc_usable_size(p + 1);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user