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