diff options
author | Christian Cunningham <cc@localhost> | 2022-01-11 18:28:15 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-01-11 18:28:15 -0700 |
commit | 8520d34e890885c19966346155675a2532b6feda (patch) | |
tree | 0be88ac50a303ff00542f43e7aa433fcc03ed10e /src/lib | |
parent | 5b3ceca69d5432f976ac487c63a75f8c6275028b (diff) |
Fixed heap free information bug
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/mem.c b/src/lib/mem.c index fcaea4b..ac5db4d 100644 --- a/src/lib/mem.c +++ b/src/lib/mem.c @@ -188,7 +188,7 @@ void heap_info_u(void) while ((void*)base < rpi_heap_top) { unsigned char size = base[MEM_SIZE_OFFSET]; if(base[MEM_USE_OFFSET] == 0) { - base += MEM_META_SIZE; + base += size + MEM_META_SIZE; continue; } uart_hex((unsigned long)(base + MEM_BASE_SIZE)); |