modified: src/client.rs
Some checks failed
gitea/Frida-android-native/pipeline/head There was a failure building this commit

This commit is contained in:
Michael Wain 2024-10-08 01:22:46 +03:00
parent 65a51cdbd2
commit e8406e9271

View File

@ -50,7 +50,7 @@ pub async fn client_mode(client_config: ClientConfiguration, fd: i32, env: &JNIE
tokio::spawn(async move { tokio::spawn(async move {
while let Ok(bytes) = lrx.recv() { while let Ok(bytes) = lrx.recv() {
let env = m_env.lock().await; let env = m_env.lock().await;
FridaLib::traceFromNative(env, String::from_utf8_lossy(&bytes).to_string()); FridaLib::traceFromNative(&env, String::from_utf8_lossy(&bytes).to_string());
drop(env); drop(env);
} }
}); });