summaryrefslogtreecommitdiffstats
path: root/src/H5FL.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-04-10 02:33:28 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-04-10 02:33:28 (GMT)
commit0e673fe2b97bfa6aecd475581a5456ba0b8caaa8 (patch)
tree9cbfb6c76ba4eec3765dfb86e9caa83bf4d5ea31 /src/H5FL.c
parentd4e99c418f4acd61b4c2d9f9404c1d17ba40d465 (diff)
downloadhdf5-0e673fe2b97bfa6aecd475581a5456ba0b8caaa8.zip
hdf5-0e673fe2b97bfa6aecd475581a5456ba0b8caaa8.tar.gz
hdf5-0e673fe2b97bfa6aecd475581a5456ba0b8caaa8.tar.bz2
[svn-r18542] Description:
Bring new object header pin/unpin & protect/unprotect routines and split-out object header chunk proxy changes from metadata_journaling branch to "merging" branch, along with some other minor tweaks to clean up compiler warnings, etc. Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode Mac OS X/32 10.6.3 (amazon) in debug mode Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode
Diffstat (limited to 'src/H5FL.c')
-rw-r--r--src/H5FL.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FL.c b/src/H5FL.c
index ee62f94..7068630 100644
--- a/src/H5FL.c
+++ b/src/H5FL.c
@@ -2133,7 +2133,7 @@ H5FL_fac_term(H5FL_fac_head_t *factory)
H5FL_blk_unlink(&(factory->queue));
/* Free factory info */
- H5FL_FREE(H5FL_fac_head_t,factory);
+ factory = H5FL_FREE(H5FL_fac_head_t, factory);
done:
FUNC_LEAVE_NOAPI(ret_value)