diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/fuse.c | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,9 @@ 2004-06-24 Miklos Szeredi <mszeredi@inf.bme.hu> + * Fix memory leak in open (Valient Gough) + +2004-06-24 Miklos Szeredi <mszeredi@inf.bme.hu> + * Add "close after delete" support to libfuse (patch by Valient Gough) @@ -968,6 +968,8 @@ static void do_open(struct fuse *f, struct fuse_in_header *in, pthread_mutex_unlock(&f->lock); } } + if (path) + free(path); } static void do_flush(struct fuse *f, struct fuse_in_header *in) |