Fix HELLO check that HULK bss and stack region could be found

This commit is contained in:
Josh Holtrop 2022-10-26 23:26:25 -04:00
parent 7540d4302e
commit 7b531e36ea

View File

@ -229,7 +229,7 @@ private void get_memory_map(ulong * bss_phys, ulong * stack_phys, ulong * physic
}
}
bootinfo().memory_map_count = count;
if ((!found_bss) && (!found_stack))
if ((!found_bss) || (!found_stack))
{
for (;;) {}
}