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