fs.mitm/loader: Fix crashes when launching too many processes.

This commit is contained in:
Michael Scire 2018-11-08 16:02:04 -08:00
parent cf510ad9bf
commit ce1a6a68bf
3 changed files with 10 additions and 1 deletions

View file

@ -522,6 +522,10 @@ void package2_patch_kernel(void *_kernel, size_t size, bool is_sd_kernel) {
fatal_error("kernel_patcher: unable to identify kernel!\n");
}
if (kernel_info == NULL && is_sd_kernel) {
return;
}
/* Apply hooks. */
uint8_t *kernel = (uint8_t *)_kernel;
size_t free_space_offset = kernel_info->free_code_space_offset;