We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05755ae commit c563c9aCopy full SHA for c563c9a
rust/src/nasl/builtin/krb5/mod.rs
@@ -206,10 +206,6 @@ impl Drop for Krb5 {
206
}
207
208
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
213
unsafe impl Send for Krb5 {}
214
unsafe impl Sync for Krb5 {}
215
0 commit comments