mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Fix sys_config_unregister_service
This commit is contained in:
parent
55117f59ee
commit
d18fcbf040
1 changed files with 1 additions and 1 deletions
|
@ -429,7 +429,7 @@ error_code sys_config_unregister_service(u32 config_hdl, u32 service_hdl)
|
|||
sys_config.trace("sys_config_unregister_service(config_hdl=0x%x, service_hdl=0x%x)", config_hdl, service_hdl);
|
||||
|
||||
// Remove listener from IDM
|
||||
auto service = idm::withdraw<lv2_config_service>(service_hdl);
|
||||
auto service = idm::get_unlocked<lv2_config_service>(service_hdl);
|
||||
if (!service)
|
||||
{
|
||||
return CELL_ESRCH;
|
||||
|
|
Loading…
Add table
Reference in a new issue