summaryrefslogtreecommitdiffstats
path: root/hl/examples/ex_ds1.c
diff options
context:
space:
mode:
Diffstat (limited to 'hl/examples/ex_ds1.c')
-rw-r--r--hl/examples/ex_ds1.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hl/examples/ex_ds1.c b/hl/examples/ex_ds1.c
index af8b581..09f398b 100644
--- a/hl/examples/ex_ds1.c
+++ b/hl/examples/ex_ds1.c
@@ -91,9 +91,11 @@ main(void)
if (H5DSattach_scale(did, dsid, DIM1) < 0)
goto out;
- /* close DS id */
+ /* close DS ids */
if (H5Dclose(dsid) < 0)
goto out;
+ if (H5Dclose(did) < 0)
+ goto out;
/* close file */
H5Fclose(fid);