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/H5Dint.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/H5Dint.c')
-rw-r--r-- | src/H5Dint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c index 707a298..e138b2a 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -403,7 +403,7 @@ H5D_create_named(const H5G_loc_t *loc, const char *name, hid_t type_id, H5D_obj_create_t dcrt_info; /* Information for dataset creation */ H5D_t *ret_value; /* Return value */ - FUNC_ENTER_NOAPI(H5D_create_named, NULL) + FUNC_ENTER_NOAPI_NOINIT(H5D_create_named) /* Check arguments */ HDassert(loc); |