diff options
Diffstat (limited to 'src/H5FDgass.c')
-rw-r--r-- | src/H5FDgass.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5FDgass.c b/src/H5FDgass.c index aadca8b..e86a5a6 100644 --- a/src/H5FDgass.c +++ b/src/H5FDgass.c @@ -439,7 +439,7 @@ H5FD_gass_close (H5FD_t *_file) * Function: H5FD_gass_query * * Purpose: Set the flags that this VFL driver is capable of supporting. - * (listed in H5FDpublic.h) + * (listed in H5FDpublic.h) * * Return: Success: non-negative * @@ -461,8 +461,9 @@ H5FD_gass_query(const UNUSED H5FD_t *_f, unsigned long *flags /* out */) /* Set the VFL feature flags that this driver supports */ if(flags) { + *flags = 0; *flags|=H5FD_FEAT_DATA_SIEVE; /* OK to perform data sieving for faster raw data reads & writes */ - } /* end if */ + } FUNC_LEAVE(ret_value); } |