mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Fixed loading unknown modules
This commit is contained in:
parent
2b7f984de8
commit
47df9eb156
1 changed files with 1 additions and 1 deletions
|
@ -503,7 +503,7 @@ namespace loader
|
|||
for (u32 i = 0; i < stub->s_imports; ++i)
|
||||
{
|
||||
const u32 nid = stub->s_nid[i];
|
||||
auto func = module->GetFunc(nid);
|
||||
auto func = module ? module->GetFunc(nid) : nullptr;
|
||||
|
||||
if (!func || !func->lle_func)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue