We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 638f039 commit 3f944c1Copy full SHA for 3f944c1
netcdf/src/file.rs
@@ -13,7 +13,7 @@ use super::group::{Group, GroupMut};
13
use super::types::{NcTypeDescriptor, NcVariableType};
14
use super::variable::{Variable, VariableMut};
15
use crate::group::{get_parent_ncid_and_stem, try_get_ncid, try_get_parent_ncid_and_stem};
16
-use crate::utils::{checked_with_lock, with_lock};
+use crate::utils::checked_with_lock;
17
18
#[derive(Debug)]
19
#[repr(transparent)]
@@ -23,7 +23,8 @@ pub(crate) struct RawFile {
23
24
impl RawFile {
25
fn close(self) -> error::Result<()> {
26
- let Self { ncid } = self;
+ let ncid = self.ncid;
27
+ std::mem::forget(self);
28
checked_with_lock(|| unsafe { nc_close(ncid) })
29
}
30
0 commit comments