diff options
author | Marvin Borner | 2021-02-26 18:40:37 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-26 18:40:37 +0100 |
commit | 5cd84ad93f7d67cdaa134707fcce1b1ef85183ad (patch) | |
tree | 777ccbcf3034f96a013c402cf05ad23c35b4de0e /libc/mem.c | |
parent | 0f00932955521c3c2fb8140176ab72f22172c298 (diff) |
Full UBSan support - many fixes!
Diffstat (limited to 'libc/mem.c')
-rw-r--r-- | libc/mem.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -291,8 +291,10 @@ void heap_init(u32 start) heap.end = (u32)start + HEAP_INIT_SIZE; } +#define ALIGN sizeof(long) static void *_malloc(u32 size) { + size = ((size + ALIGN - 1) / ALIGN) * ALIGN; // Alignment u32 index = bin_index(size); struct h_bin *temp = (struct h_bin *)&heap.bins[index]; struct h_node *found = node_best_fit(temp, size); |