diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2017-11-13 19:43:32 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2017-11-13 19:43:32 (GMT) |
commit | bca20b40b4966552a844051c3d912d6aec50592f (patch) | |
tree | 35109672d047a1b6c9d4b4c178b627611ded1adc /test/tattr.c | |
parent | 04bb800f7c8767c888189740e52e18d74cfe52ab (diff) | |
download | hdf5-bca20b40b4966552a844051c3d912d6aec50592f.zip hdf5-bca20b40b4966552a844051c3d912d6aec50592f.tar.gz hdf5-bca20b40b4966552a844051c3d912d6aec50592f.tar.bz2 |
Initialize hid_t variables in test_Attr_bug9.
Diffstat (limited to 'test/tattr.c')
-rw-r--r-- | test/tattr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/tattr.c b/test/tattr.c index 5b00edc..5eaa882 100644 --- a/test/tattr.c +++ b/test/tattr.c @@ -10595,10 +10595,10 @@ test_attr_bug8(hid_t fcpl, hid_t fapl) static void test_attr_bug9(hid_t fcpl, hid_t fapl) { - hid_t fid; /* File ID */ - hid_t gid; /* Group ID */ - hid_t aid; /* Attribute ID */ - hid_t sid; /* Dataspace ID */ + hid_t fid = -1; /* File ID */ + hid_t gid = -1; /* Group ID */ + hid_t aid = -1; /* Attribute ID */ + hid_t sid = -1; /* Dataspace ID */ hsize_t dims[1] = {32768}; /* Attribute dimensions */ int create_link; /* Whether to create a soft link */ unsigned max_compact; /* Setting from fcpl */ |