summaryrefslogtreecommitdiffstats
path: root/src/H5HFcache.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2019-11-25 21:43:56 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2019-11-25 21:43:56 (GMT)
commitf2f8a554e65ee3e3ca501adf80fbdfd0225dac3f (patch)
treeef83cbaf3c9949a3ee9819a4a231ad3514c43735 /src/H5HFcache.c
parentedd529714302f9ed218d1e61d5f496fa788d10b4 (diff)
downloadhdf5-f2f8a554e65ee3e3ca501adf80fbdfd0225dac3f.zip
hdf5-f2f8a554e65ee3e3ca501adf80fbdfd0225dac3f.tar.gz
hdf5-f2f8a554e65ee3e3ca501adf80fbdfd0225dac3f.tar.bz2
Don't use C99 designated initializers, they're not compatible with
Visual Studio 2010.
Diffstat (limited to 'src/H5HFcache.c')
-rw-r--r--src/H5HFcache.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/H5HFcache.c b/src/H5HFcache.c
index 39dc554..ab448ef 100644
--- a/src/H5HFcache.c
+++ b/src/H5HFcache.c
@@ -406,12 +406,7 @@ static herr_t
H5HF__cache_hdr_get_final_load_size(const void *_image, size_t image_len,
void *_udata, size_t *actual_len)
{
- /* Temporary fractal heap header, initialized because GCC 5.5 does
- * not realize that the H5HF__hdr_prefix_decode() call is sufficient
- * to initialize. GCC 8 is clever enough to see that the variable
- * is initialized. TBD condition on compiler version.
- */
- H5HF_hdr_t hdr = {.filter_len = 0};
+ H5HF_hdr_t hdr; /* Temporary fractal heap header */
const uint8_t *image = (const uint8_t *)_image; /* Pointer into into supplied image */
H5HF_hdr_cache_ud_t *udata = (H5HF_hdr_cache_ud_t *)_udata; /* User data for callback */
herr_t ret_value = SUCCEED; /* Return value */
@@ -424,6 +419,12 @@ H5HF__cache_hdr_get_final_load_size(const void *_image, size_t image_len,
HDassert(actual_len);
HDassert(*actual_len == image_len);
+ /* Initialize because GCC 5.5 does not realize that the
+ * H5HF__hdr_prefix_decode() call is sufficient to initialize.
+ * GCC 8 is clever enough to see that the variable is initialized.
+ * TBD condition on compiler version.
+ */
+ hdr.filter_len = 0;
/* Deserialize the fractal heap header's prefix */
if(H5HF__hdr_prefix_decode(&hdr, &image) < 0)
HGOTO_ERROR(H5E_HEAP, H5E_CANTDECODE, FAIL, "can't decode fractal heap header prefix")