diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2017-11-13 19:43:32 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2017-11-14 22:18:55 (GMT) |
commit | 97bc393449f3fe02c5992872ab2842e12f611ef0 (patch) | |
tree | d13429d2e4128f28d085a7622e0d01308cb006be /test/tattr.c | |
parent | 1b2c2ca9a6a7d7e1fcd5c3302e203f2e2dabf0af (diff) | |
download | hdf5-97bc393449f3fe02c5992872ab2842e12f611ef0.zip hdf5-97bc393449f3fe02c5992872ab2842e12f611ef0.tar.gz hdf5-97bc393449f3fe02c5992872ab2842e12f611ef0.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 73962c5..85e82b0 100644 --- a/test/tattr.c +++ b/test/tattr.c @@ -10569,10 +10569,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 */ |