Skip to content

Commit

Permalink
Disable bitwarden-c from printing command input (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
carnei-ro authored Dec 12, 2023
1 parent e270190 commit d457185
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/bitwarden-c/src/c.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ pub async extern "C" fn run_command(
) -> *mut c_char {
let client = unsafe { ffi_ref!(client_ptr) };
let input_str = str::from_utf8(unsafe { CStr::from_ptr(c_str_ptr).to_bytes() }).unwrap();
println!("{}", input_str);

let result = client.run_command(input_str).await;
match std::ffi::CString::new(result) {
Expand Down

0 comments on commit d457185

Please sign in to comment.