]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
inotify: stop kernel memory leak on file creation failure
authorEric Paris <eparis@redhat.com>
Tue, 23 Nov 2010 23:18:37 +0000 (18:18 -0500)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Wed, 16 Jan 2013 21:44:56 +0000 (16:44 -0500)
commit a2ae4cc9a16e211c8a128ba10d22a85431f093ab upstream.

If inotify_init is unable to allocate a new file for the new inotify
group we leak the new group.  This patch drops the reference on the
group on file allocation failure.

Reported-by: Vegard Nossum <vegard.nossum@gmail.com>
Signed-off-by: Eric Paris <eparis@redhat.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
fs/notify/inotify/inotify_user.c

index 0c6bbc031f15a2677be351ef4a9fa4eab3edfbf8..72f8825526084e6dfafc3a351311f898e7ee873f 100644 (file)
@@ -674,6 +674,7 @@ SYSCALL_DEFINE1(inotify_init1, int, flags)
        if (ret >= 0)
                return ret;
 
+       fsnotify_put_group(group);
        atomic_dec(&user->inotify_devs);
 out_free_uid:
        free_uid(user);