Update Rust to nightly-2022-06-22

This commit is contained in:
Jordan Rose
2022-06-23 16:29:24 -07:00
parent 15c09ad419
commit b5da2eac9d
37 changed files with 107 additions and 101 deletions

View File

@@ -29,7 +29,7 @@ pub unsafe extern "C" fn signal_free_string(buf: *const c_char) {
if buf.is_null() {
return;
}
CString::from_raw(buf as _);
drop(CString::from_raw(buf as _));
}
#[no_mangle]