1
0
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:
Colton Hurst
2025-04-30 18:01:26 -04:00
parent d8c69d05d4
commit 99cb29553a

View File

@@ -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();