Fix crash due to unsigned index and 0 boundary loop.
This commit is contained in:
parent
5f08ebdfc8
commit
e72cebbad6
@ -43,7 +43,7 @@ void memory_init(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void free_memory(supervisor_allocation* allocation) {
|
void free_memory(supervisor_allocation* allocation) {
|
||||||
uint8_t index = 0;
|
int32_t index = 0;
|
||||||
bool found = false;
|
bool found = false;
|
||||||
for (index = 0; index < CIRCUITPY_SUPERVISOR_ALLOC_COUNT; index++) {
|
for (index = 0; index < CIRCUITPY_SUPERVISOR_ALLOC_COUNT; index++) {
|
||||||
found = allocation == &allocations[index];
|
found = allocation == &allocations[index];
|
||||||
|
Loading…
Reference in New Issue
Block a user