summaryrefslogtreecommitdiffstats
path: root/src/H5HLprfx.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-11-26 18:11:08 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-11-26 18:11:08 (GMT)
commit2c3d02e6e5771c05e666d4ccf4a77915d0bf1e50 (patch)
tree8601a4262c1c82836046810039d9d7b2e218adf6 /src/H5HLprfx.c
parenta8d1aff23568c0f64fa16cfbb37d7741bb922a60 (diff)
parentfff898558e3c828070abe81b4147bd959ed37ccb (diff)
downloadhdf5-2c3d02e6e5771c05e666d4ccf4a77915d0bf1e50.zip
hdf5-2c3d02e6e5771c05e666d4ccf4a77915d0bf1e50.tar.gz
hdf5-2c3d02e6e5771c05e666d4ccf4a77915d0bf1e50.tar.bz2
Merge branch 'develop' into eoc_valgrind_bugfix
Diffstat (limited to 'src/H5HLprfx.c')
-rw-r--r--src/H5HLprfx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5HLprfx.c b/src/H5HLprfx.c
index 66c4dad..ed1c4db 100644
--- a/src/H5HLprfx.c
+++ b/src/H5HLprfx.c
@@ -118,10 +118,9 @@ H5HL__prfx_new(H5HL_t *heap))
CATCH
/* Ensure that the prefix memory is deallocated on errors */
- if(!ret_value && prfx != NULL) {
+ if(!ret_value && prfx != NULL)
/* H5FL_FREE always returns NULL so we can't check for errors */
prfx = H5FL_FREE(H5HL_prfx_t, prfx);
- }
END_FUNC(PKG) /* end H5HL__prfx_new() */
@@ -164,3 +163,4 @@ CATCH
prfx = H5FL_FREE(H5HL_prfx_t, prfx);
END_FUNC(PKG) /* end H5HL__prfx_dest() */
+