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
17
18
#include <stdlib.h>
#include <string.h>

#include "test_util.h"

OPTNONE int main(void) {
    void *p = NULL;
    size_t size = 256 * 1024;

    for (unsigned i = 0; i < 20; i++) {
        p = realloc(p, size);
        if (!p) {
            return 1;
        }
        memset(p, 'a', size);
        size = size * 3 / 2;
    }
}