Loader: Fix BusFault in handling of OOM ofw PR 3992

by Willy-JL
This commit is contained in:
MX 2024-11-11 14:22:55 +03:00
parent 462ab255a1
commit 3d74f4e1dc
No known key found for this signature in database
GPG Key ID: 7CCC66B7DBDD1C83

View File

@ -834,7 +834,9 @@ void elf_file_free(ELFFile* elf) {
aligned_free(itref->value.data);
}
if(itref->value.fast_rel) {
if(itref->value.fast_rel->data) {
aligned_free(itref->value.fast_rel->data);
}
free(itref->value.fast_rel);
}
free((void*)itref->key);