hardened_malloc-rs 0.1.2+12

hardened_malloc rust wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdlib.h>
#include <string.h>

#include "test_util.h"
#include "../util.h"

OPTNONE int main(void) {
    char *p = malloc(256 * 1024);
    if (!p) {
        return 1;
    }
    free(p);
    UNUSED char *q = malloc(256 * 1024);
    p[64 * 1024 + 1] = 'a';
    return 0;
}