b511696c55
This marginally increases the portability of hardened_malloc, eg. on OSX.
20 lines
297 B
C
20 lines
297 B
C
#include <stdlib.h>
|
|
|
|
#include "test_util.h"
|
|
|
|
OPTNONE int main(void) {
|
|
char *p = malloc(128);
|
|
if (!p) {
|
|
return 1;
|
|
}
|
|
free(p);
|
|
|
|
p[65] = 'a';
|
|
|
|
// trigger reuse of the allocation
|
|
for (size_t i = 0; i < 100000; i++) {
|
|
free(malloc(128));
|
|
}
|
|
return 0;
|
|
}
|