mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-05 04:25:08 +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;
|
||||
}
|
||||
}
|
||||
if (*outSize) {
|
||||
if (outSize != NULL) {
|
||||
*outSize = counter;
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user