Message ID | 20240426082852.555905-1-iam@sung-woo.kim (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | Bluetooth: A2MP: fix slab-use-after-free in l2cap_chan_del | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | fail | error: patch failed: net/bluetooth/hci_conn.c:1175 error: net/bluetooth/hci_conn.c: patch does not apply hint: Use 'git am --show-current-patch' to see the failed patch |
This is an automated email and please do not reply to this email. Dear Submitter, Thank you for submitting the patches to the linux bluetooth mailing list. While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository. ----- Output ----- error: patch failed: net/bluetooth/hci_conn.c:1175 error: net/bluetooth/hci_conn.c: patch does not apply hint: Use 'git am --show-current-patch' to see the failed patch Please resolve the issue and submit the patches again. --- Regards, Linux Bluetooth
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index a41d2693f..f9b41add1 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -1175,8 +1175,10 @@ void hci_conn_del(struct hci_conn *conn) } } - if (conn->amp_mgr) + if (conn->amp_mgr) { amp_mgr_put(conn->amp_mgr); + conn->amp_mgr = NULL; + } skb_queue_purge(&conn->data_q);