diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-21 22:43:12 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-21 22:43:12 (GMT) |
commit | fce396c5a7907a5f1acedd2c4ba9c0915acc6129 (patch) | |
tree | 59ee6310458680e06b765bb41a0bfc64ace9baa4 /src/H5F.c | |
parent | bdaf33ca5a24edbcb3423e34e1e66c090da31cda (diff) | |
download | hdf5-fce396c5a7907a5f1acedd2c4ba9c0915acc6129.zip hdf5-fce396c5a7907a5f1acedd2c4ba9c0915acc6129.tar.gz hdf5-fce396c5a7907a5f1acedd2c4ba9c0915acc6129.tar.bz2 |
[svn-r6724] Purpose:
Commenting
Description:
Added comments to the H5Fget_access_plist function to remind people
that if they are going to be overwriting a value in the plist which
was originally opened and inserted into the plist, then it should be
closed before overwriting that value.
Platforms tested:
Modi4 (Only comment change, so no h5committest needed).
Misc. update:
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -840,6 +840,11 @@ done: * Purpose: Returns a copy of the file access property list of the * specified file. * + * NOTE: Make sure that, if you are going to overwrite + * information in the copied property list that was + * previously opened and assigned to the property list, then + * you must close it before overwriting the values. + * * Return: Success: Object ID for a copy of the file access * property list. * @@ -852,6 +857,11 @@ done: * Raymond Lu, Oct 23, 2001 * Changed file access property list to the new generic * property list. + * + * Bill Wendling, Apr 21, 2003 + * Fixed bug where the driver ID and info in the property + * list were being overwritten but the original ID and info + * weren't being close. * *------------------------------------------------------------------------- */ |