mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-17 10:19:21 +01:00
Fix check for NULL-pointer in WUPSGetLoadedPlugins
This commit is contained in:
parent
dfb8828829
commit
2633d983f3
@ -186,7 +186,7 @@ int32_t WUPSGetLoadedPlugins(plugin_container_handle *io_handles, uint32_t buffe
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (*outSize) {
|
if (outSize != NULL) {
|
||||||
*outSize = counter;
|
*outSize = counter;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user