plugin_framework, remove unused mut

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou 2023-05-16 09:56:16 +08:00
parent 522f6f3309
commit 97e9682757

View File

@ -308,7 +308,7 @@ fn request_plugin_sign(id: String, msg_to_rustdesk: MsgToRustDesk) -> PluginRetu
"",
&[],
) {
Ok(mut ret) => {
Ok(ret) => {
assert!(!ret.msg.is_null());
let msg = cstr_to_string(ret.msg).unwrap_or_default();
free_c_ptr(ret.msg as _);