modified: src/main.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-06 00:56:51 +03:00
parent b321f36e9b
commit 7b6d6da5fd

View File

@ -28,7 +28,8 @@ pub unsafe extern "C" fn Java_com_alterdekim_frida_FridaLib_run(
) -> jint { ) -> jint {
let config = env.get_string(config_b32).unwrap().into(); let config = env.get_string(config_b32).unwrap().into();
let close_fd_on_drop = close_fd_on_drop != 0; let close_fd_on_drop = close_fd_on_drop != 0;
mobile::mobile_run(config, close_fd_on_drop, tun_fd) mobile::mobile_run(config, close_fd_on_drop, tun_fd);
0
} }
#[no_mangle] #[no_mangle]