From 90d18c74defcc11ee4b31c49d2700f96c18016e9 Mon Sep 17 00:00:00 2001 From: Csaba Henk Date: Tue, 5 Jan 2010 07:19:40 +0000 Subject: fuse: fix memleak continuing the work of d281971e Signed-off-by: Csaba Henk Signed-off-by: Anand V. Avati BUG: 438 (Memory leak) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=438 --- xlators/mount/fuse/src/fuse-bridge.c | 1 + 1 file changed, 1 insertion(+) (limited to 'xlators') diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index 9b2c43fc268..7254e556131 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -2398,6 +2398,7 @@ fuse_setxattr (xlator_t *this, fuse_in_header_t *finh, void *msg) #ifdef DISABLE_POSIX_ACL if (!strncmp (name, "system.", 7)) { send_fuse_err (this, finh, EOPNOTSUPP); + FREE (finh); return; } #endif -- cgit