mirror of
https://github.com/bitwarden/browser
synced 2026-02-17 09:59:41 +00:00
PM-19255: clsid needs to be wrapped in brackets
This commit is contained in:
@@ -97,7 +97,7 @@ pub fn register() -> std::result::Result<(), String> {
|
||||
&mut credential_details;
|
||||
std::mem::forget(credential_details);
|
||||
|
||||
let mut clsid_string = String::from(CLSID);
|
||||
let mut clsid_string = String::from(format!("{{{}}}",CLSID));
|
||||
let mut clsid_vec: Vec<u16> = clsid_string.encode_utf16().collect();
|
||||
clsid_vec.push(0);
|
||||
let plugin_clsid: *mut u16 = clsid_vec.as_mut_ptr();
|
||||
|
||||
Reference in New Issue
Block a user