Fix a bug in conversion of File into raw handle

pull/165/head
Stjepan Glavina 5 years ago
parent 9bf06ce52b
commit 41f345d319

@ -419,7 +419,11 @@ cfg_if! {
impl IntoRawFd for File {
fn into_raw_fd(self) -> RawFd {
self.file.as_raw_fd()
let file = self.file.clone();
drop(self);
Arc::try_unwrap(file)
.expect("cannot acquire ownership of file handle after drop")
.into_raw_fd()
}
}
}
@ -442,7 +446,11 @@ cfg_if! {
impl IntoRawHandle for File {
fn into_raw_handle(self) -> RawHandle {
self.file.as_raw_handle()
let file = self.file.clone();
drop(self);
Arc::try_unwrap(file)
.expect("cannot acquire ownership of file's handle after drop")
.into_raw_handle()
}
}
}

Loading…
Cancel
Save