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>2020-05-20 14:17:27 (GMT)
commit1f7fdfe14cf47fbb7e09dd389df1005e3b05b2cc (patch)
tree711aa3a50d36359c49d30d475a67c628e6531189 /src/H5HFtiny.c
parentca0fcd34f3360d6fa1f7c630cfa3f54c95504d3e (diff)
downloadhdf5-1f7fdfe14cf47fbb7e09dd389df1005e3b05b2cc.zip
hdf5-1f7fdfe14cf47fbb7e09dd389df1005e3b05b2cc.tar.gz
hdf5-1f7fdfe14cf47fbb7e09dd389df1005e3b05b2cc.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