diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-06-06 10:16:38 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2006-06-06 10:16:38 +0000 |
commit | 55a84101bd2d2426168ee18914f6874e042ab1e6 (patch) | |
tree | 376ee09fc1304e50500861d6594eb9da0108c735 | |
parent | 9dedb707f43ea1d2e989c41e91e348b1982f06ce (diff) | |
download | libfuse-55a84101bd2d2426168ee18914f6874e042ab1e6.tar.gz |
fix
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/fuse.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2006-06-06 Miklos Szeredi <miklos@szeredi.hu> + + * Add missing pthread_rwlock_destroy(). Patch from Remy Blank + 2006-06-05 Remy Blank <remy.blank@pobox.com> * lib: canonicalize mount point in fuse_helper_opt_proc() so that @@ -2147,6 +2147,7 @@ void fuse_destroy(struct fuse *f) free(f->id_table); free(f->name_table); pthread_mutex_destroy(&f->lock); + pthread_rwlock_destroy(&f->tree_lock); fuse_session_destroy(f->se); free(f); } |