diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2012-02-08 13:36:25 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2012-02-08 13:36:25 (GMT) |
commit | eb0e5f8c4ea29e674c97a8be048814e26379d4c1 (patch) | |
tree | 58cc5c1cc4772615d111291b0e673b8826b3de83 /src/H5Tcommit.c | |
parent | 594ee8d6403396e402a9fc405d7b19ee21cfa0f1 (diff) | |
download | hdf5-eb0e5f8c4ea29e674c97a8be048814e26379d4c1.zip hdf5-eb0e5f8c4ea29e674c97a8be048814e26379d4c1.tar.gz hdf5-eb0e5f8c4ea29e674c97a8be048814e26379d4c1.tar.bz2 |
[svn-r21917] Description:
Bring [spirit of] r20393 from coverity branch back to trunk:
Move initialization ocrt_info.new_obj = NULL; before FUNC_ENTER_NOAPI -- gh
Tested on:
Mac OS X/64 10.7.3 (amazon) w/debug, production & parallel
(too minor to require h5commitest)
Diffstat (limited to 'src/H5Tcommit.c')
-rw-r--r-- | src/H5Tcommit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tcommit.c b/src/H5Tcommit.c index d3779e5..26f021d 100644 --- a/src/H5Tcommit.c +++ b/src/H5Tcommit.c @@ -189,7 +189,7 @@ H5T_commit_named(const H5G_loc_t *loc, const char *name, H5T_t *dt, H5T_state_t old_state = H5T_STATE_TRANSIENT; /* The state of the datatype before H5T_commit. */ herr_t ret_value = SUCCEED; /* Return value */ - FUNC_ENTER_NOAPI(H5T_commit_named, FAIL) + FUNC_ENTER_NOAPI_NOINIT(H5T_commit_named) /* Sanity checks */ HDassert(loc); |