ソースを参照

Bluetooth: add NULL pointer check in HCI

If we fail to find a hci device pointer in hci_uart, don't try
to deref the NULL one we do have.

Signed-off-by: Jun Nie <njun@marvell.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Jun Nie 14 年 前
コミット
d9319560b8
1 ファイル変更4 行追加2 行削除
  1. 4 2
      drivers/bluetooth/hci_ldisc.c

+ 4 - 2
drivers/bluetooth/hci_ldisc.c

@@ -311,8 +311,10 @@ static void hci_uart_tty_close(struct tty_struct *tty)
 
 
 		if (test_and_clear_bit(HCI_UART_PROTO_SET, &hu->flags)) {
 		if (test_and_clear_bit(HCI_UART_PROTO_SET, &hu->flags)) {
 			hu->proto->close(hu);
 			hu->proto->close(hu);
-			hci_unregister_dev(hdev);
-			hci_free_dev(hdev);
+			if (hdev) {
+				hci_unregister_dev(hdev);
+				hci_free_dev(hdev);
+			}
 		}
 		}
 	}
 	}
 }
 }