summaryrefslogtreecommitdiffstats
path: root/src/H5T.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-09-30 03:47:13 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-09-30 03:47:13 (GMT)
commit3ae90362b70ef459aca8cc6025b98f476d8c683f (patch)
tree2ada1083843a720a04a0e0becd9232917ce8adb5 /src/H5T.c
parent383300afc95489a2b991e6640da750ace0e0758b (diff)
downloadhdf5-3ae90362b70ef459aca8cc6025b98f476d8c683f.zip
hdf5-3ae90362b70ef459aca8cc6025b98f476d8c683f.tar.gz
hdf5-3ae90362b70ef459aca8cc6025b98f476d8c683f.tar.bz2
[svn-r9343] Purpose:
Bug fix/code cleanup Description: Clean up raw data I/O code to bundle the I/O parameters (dataset, DXPL ID, etc) into a single struct to pass around through the dataset I/O routines, since they are always passed together, until very near the bottom of the I/O stack. Platforms tested: FreeBSD 4.10 (sleipnir) w/parallel Solaris 2.7 (arabica) IRIX64 6.5 (modi4) h5committest
Diffstat (limited to 'src/H5T.c')
-rw-r--r--src/H5T.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5T.c b/src/H5T.c
index 1f133cf..446b2df 100644
--- a/src/H5T.c
+++ b/src/H5T.c
@@ -2761,8 +2761,8 @@ done:
H5T_t*
H5T_open (H5G_entry_t *ent, hid_t dxpl_id)
{
- H5T_shared_t *shared_fo;
- H5T_t *dt;
+ H5T_shared_t *shared_fo=NULL;
+ H5T_t *dt=NULL;
H5T_t *ret_value;
FUNC_ENTER_NOAPI(H5T_open, NULL);