diff options
author | Jiri Slaby <jslaby@suse.cz> | 2011-10-12 05:32:44 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-10-18 19:39:44 -0400 |
commit | 1177c0efc04d032644895b8d757f55b433912596 (patch) | |
tree | 6f6a2230d2b4d15a8c0673c5167559df9fd06e49 /drivers/tty/pty.c | |
parent | fa90e1c935472281de314e6d7c9a37db9cbc2e4e (diff) |
TTY: pty, release tty in all ptmx_open fail paths
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>
Diffstat (limited to 'drivers/tty/pty.c')
-rw-r--r-- | drivers/tty/pty.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/tty/pty.c b/drivers/tty/pty.c index 7613f95f2d6b..2feea63d497a 100644 --- a/drivers/tty/pty.c +++ b/drivers/tty/pty.c | |||
@@ -686,15 +686,15 @@ static int ptmx_open(struct inode *inode, struct file *filp) | |||
686 | 686 | ||
687 | retval = devpts_pty_new(inode, tty->link); | 687 | retval = devpts_pty_new(inode, tty->link); |
688 | if (retval) | 688 | if (retval) |
689 | goto out1; | 689 | goto err_release; |
690 | 690 | ||
691 | retval = ptm_driver->ops->open(tty, filp); | 691 | retval = ptm_driver->ops->open(tty, filp); |
692 | if (retval) | 692 | if (retval) |
693 | goto out2; | 693 | goto err_release; |
694 | out1: | 694 | |
695 | tty_unlock(); | 695 | tty_unlock(); |
696 | return retval; | 696 | return 0; |
697 | out2: | 697 | err_release: |
698 | tty_unlock(); | 698 | tty_unlock(); |
699 | tty_release(inode, filp); | 699 | tty_release(inode, filp); |
700 | return retval; | 700 | return retval; |