diff options
-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); } |