summaryrefslogtreecommitdiffstats
path: root/src/H5HFtiny.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2019-11-13 17:37:14 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2019-11-13 17:37:14 (GMT)
commit193702935442785cf752ed705b977b004ce29d30 (patch)
tree3cb9ba056b5d4f8ae347afc769afa3575bef9850 /src/H5HFtiny.c
parente2d9cc558448224360d0641d225b9f71344c3e5a (diff)
downloadhdf5-193702935442785cf752ed705b977b004ce29d30.zip
hdf5-193702935442785cf752ed705b977b004ce29d30.tar.gz
hdf5-193702935442785cf752ed705b977b004ce29d30.tar.bz2
Initialize a couple of variables that the compiler does not realize are
initialized when they're passed by reference to functions.
Diffstat (limited to 'src/H5HFtiny.c')
-rw-r--r--src/H5HFtiny.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5HFtiny.c b/src/H5HFtiny.c
index 0c27180..79d790b 100644
--- a/src/H5HFtiny.c
+++ b/src/H5HFtiny.c
@@ -377,7 +377,7 @@ done:
herr_t
H5HF_tiny_remove(H5HF_hdr_t *hdr, const uint8_t *id)
{
- size_t enc_obj_size; /* Encoded object size */
+ size_t enc_obj_size = 0; /* Encoded object size */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI_NOINIT