[nvnflinger] unstub AdjustRefcount #120

Merged
crueter merged 4 commits from binder_driver into master 2025-07-25 19:58:36 +02:00
Showing only changes of commit f71343e5bb - Show all commits

View file

@ -53,6 +53,9 @@ Result IHOSBinderDriver::GetNativeHandle(s32 binder_id, u32 type_id,
const auto binder = m_server->TryGetBinder(binder_id);
R_UNLESS(binder != nullptr, ResultUnknown);
auto native_handle = binder->GetNativeHandle(type_id);
R_UNLESS(native_handle != nullptr, ResultUnknown);
*out_handle = binder->GetNativeHandle(type_id);
R_SUCCEED();