diff options
author | Robb Matzke <matzke@llnl.gov> | 2000-12-29 18:35:17 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 2000-12-29 18:35:17 (GMT) |
commit | 64121aacce83032bad40cc4d36eabfe7b57fbe67 (patch) | |
tree | 3ee0783b72f8b0c70ee0fbaa71e0692243445f45 | |
parent | 3c84c589e64c5bfa3cbd3083b3d33fdad8780564 (diff) | |
download | hdf5-64121aacce83032bad40cc4d36eabfe7b57fbe67.zip hdf5-64121aacce83032bad40cc4d36eabfe7b57fbe67.tar.gz hdf5-64121aacce83032bad40cc4d36eabfe7b57fbe67.tar.bz2 |
[svn-r3216] ./hdf5/src/H5FDfamily.c
2000-12-29 08:53:43 Robb Matzke <matzke@llnl.gov>
* H5FD_family_query: The `flags' argument is advertised to be output only. Therefore I
added code to zero its value before the feature bits
are assigned.
-rw-r--r-- | src/H5FDfamily.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5FDfamily.c b/src/H5FDfamily.c index 4f0b3d9..cbc0d34 100644 --- a/src/H5FDfamily.c +++ b/src/H5FDfamily.c @@ -99,7 +99,7 @@ static const H5FD_class_t H5FD_family_g = { H5FD_family_open, /*open */ H5FD_family_close, /*close */ H5FD_family_cmp, /*cmp */ - H5FD_family_query, /*query */ + H5FD_family_query, /*query */ NULL, /*alloc */ NULL, /*free */ H5FD_family_get_eoa, /*get_eoa */ @@ -614,7 +614,7 @@ H5FD_family_cmp(const H5FD_t *_f1, const H5FD_t *_f2) * Function: H5FD_family_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 * @@ -636,10 +636,11 @@ H5FD_family_query(const H5FD_t UNUSED *_f, unsigned long *flags /* out */) /* Set the VFL feature flags that this driver supports */ if(flags) { + *flags=0; *flags|=H5FD_FEAT_AGGREGATE_METADATA; /* OK to aggregate metadata allocations */ *flags|=H5FD_FEAT_ACCUMULATE_METADATA; /* OK to accumulate metadata for faster writes */ *flags|=H5FD_FEAT_DATA_SIEVE; /* OK to perform data sieving for faster raw data reads & writes */ - } /* end if */ + } FUNC_LEAVE(ret_value); } |