1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-05 03:03:26 +00:00

PM-19255: Fix COM

This commit is contained in:
Colton Hurst
2025-06-18 11:39:26 -04:00
parent baaa8d8d95
commit 746bdfab00

View File

@@ -116,13 +116,11 @@ impl IClassFactory_Impl for Factory_Impl {
iid: *const GUID,
object: *mut *mut core::ffi::c_void,
) -> Result<()> {
assert!(outer.is_null());
let unknown: IInspectable = PluginAuthenticatorComObject.into();
let unknown: IInspectable = PluginAuthenticatorComObject.into(); // TODO: IUnknown ?
unsafe { unknown.query(iid, object).ok() }
}
fn LockServer(&self, lock: BOOL) -> Result<()> {
assert!(lock.as_bool());
Ok(())
}
}