]> git.karo-electronics.de Git - linux-beck.git/commitdiff
TTY: pty, release tty in all ptmx_open fail paths
authorJiri Slaby <jslaby@suse.cz>
Wed, 12 Oct 2011 09:32:44 +0000 (11:32 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 18 Oct 2011 23:39:44 +0000 (16:39 -0700)
Mistakenly, commit 64ba3dc3143d (tty: never hold BTM while getting
tty_mutex) switched one fail path in ptmx_open to not free the newly
allocated tty.

Fix that by jumping to the appropriate place. And rename the labels so
that it's clear what is going on there.

Introduced-in: v2.6.36-rc2
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: stable <stable@vger.kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/tty/pty.c

index 7613f95f2d6b1d82e3297714701a35903d5885c9..2feea63d497a5ba47f89382f7a5c1d5a7be752b4 100644 (file)
@@ -686,15 +686,15 @@ static int ptmx_open(struct inode *inode, struct file *filp)
 
        retval = devpts_pty_new(inode, tty->link);
        if (retval)
-               goto out1;
+               goto err_release;
 
        retval = ptm_driver->ops->open(tty, filp);
        if (retval)
-               goto out2;
-out1:
+               goto err_release;
+
        tty_unlock();
-       return retval;
-out2:
+       return 0;
+err_release:
        tty_unlock();
        tty_release(inode, filp);
        return retval;