mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
14 lines
184 B
C
14 lines
184 B
C
#include <stdlib.h>
|
|
|
|
#include "test_util.h"
|
|
|
|
OPTNONE int main(void) {
|
|
void *p = malloc(256 * 1024);
|
|
if (!p) {
|
|
return 1;
|
|
}
|
|
free(p);
|
|
free(p);
|
|
return 0;
|
|
}
|