aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Dong <hao.bigrat@gmail.com>2012-03-12 13:44:58 +0800
committerJohn Rigby <john.rigby@linaro.org>2012-06-25 15:02:26 -0600
commitb89fd5023055d37aca9408c57554717f220e4c0b (patch)
treedfdace9d563f776b09a93ee91df3ba42e95afdc7
parentebd041febc9df514cc5b2b23905283332093dc97 (diff)
UBUNTU: ubuntu: overlayfs -- overlayfs: fix possible leak in ovl_new_inode
After allocating a new inode, if the mode of inode is incorrect, we should release it by iput(). Signed-off-by: Robin Dong <sanbai@taobao.com> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
-rw-r--r--fs/overlayfs/inode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/overlayfs/inode.c b/fs/overlayfs/inode.c
index c220ea745f2..86bf66346ad 100644
--- a/fs/overlayfs/inode.c
+++ b/fs/overlayfs/inode.c
@@ -376,6 +376,7 @@ struct inode *ovl_new_inode(struct super_block *sb, umode_t mode,
default:
WARN(1, "illegal file type: %i\n", mode);
+ iput(inode);
inode = NULL;
}