We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3829c5c commit 5a68bf8Copy full SHA for 5a68bf8
src/shims/native_lib/ffi.rs
@@ -15,7 +15,7 @@ pub unsafe fn call<R: libffi::high::CType>(fun: CodePtr, args: &[OwnedArg]) -> R
15
let cif = Cif::new(arg_tys, R::reify().into_middle());
16
// SAFETY: Caller upholds that the function is safe to call, and since we
17
// were passed a slice reference we know the `OwnedArg`s won't have been
18
- // by this point.
+ // dropped by this point.
19
unsafe { cif.call(fun, &arg_ptrs) }
20
}
21
0 commit comments