[Bluetooth] Check if RFCOMM session is still attached to the TTY
authorMarcel Holtmann <marcel@holtmann.org>
Sat, 18 Nov 2006 21:14:42 +0000 (22:14 +0100)
committerDavid S. Miller <davem@sunset.davemloft.net>
Wed, 22 Nov 2006 00:16:30 +0000 (16:16 -0800)
If the RFCOMM session is no longer attached to the TTY device, then it
makes no sense to go through with changing the termios settings.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/rfcomm/tty.c

index b8e3a5f1c8a80683d5806662cc7f55c46a656bee..1fb5d42f37ae959c05dc92df929924250eeca90a 100644 (file)
@@ -765,7 +765,7 @@ static void rfcomm_tty_set_termios(struct tty_struct *tty, struct termios *old)
 
        BT_DBG("tty %p termios %p", tty, old);
 
-       if (!dev)
+       if (!dev || !dev->dlc || !dev->dlc->session)
                return;
 
        /* Handle turning off CRTSCTS */