Skip to content

Commit b6edd08

Browse files
committed
Cleanup
1 parent 347f549 commit b6edd08

File tree

2 files changed

+0
-5
lines changed
  • rust
    • crates/nasl-c-lib/libopenvas-krb5-sys
    • src/nasl/builtin/krb5

2 files changed

+0
-5
lines changed

rust/crates/nasl-c-lib/libopenvas-krb5-sys/build.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ fn build_krb5(src: &Path, install_prefix: &Path, target: &str) {
101101
panic!("Configure failed");
102102
}
103103

104-
// Ignore status, as it make process might fail, but libs will still be built
105104
Command::new("make")
106105
.arg("-j")
107106
.current_dir(src)

rust/src/nasl/builtin/krb5/mod.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,6 @@ impl Drop for Krb5 {
206206
}
207207
}
208208

209-
// SAFETY: Krb5 can be safely sent between threads because:
210-
// - The raw pointers are stored behind Arc<Mutex<...>> for synchronization
211-
// - Access to the pointers is guarded by mutex locks
212-
// - The outer Arc<Mutex<...>> provides the thread-safe coordination
213209
unsafe impl Send for Krb5 {}
214210
unsafe impl Sync for Krb5 {}
215211

0 commit comments

Comments
 (0)