From ef07b2dc0f67c650b7e6175ec63d44f3244f00a9 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Tue, 2 Oct 2018 16:17:13 +0200 Subject: [PATCH] l2cap: fix issue with outgoing connection before read remote supported complete when other channels exist --- CHANGELOG.md | 2 ++ src/l2cap.c | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac9f375d1..886a11b5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Fixed +- L2CAP: fix issue with outgoing connection before read remote supported complete when other channels exist ## Changes September 2018 diff --git a/src/l2cap.c b/src/l2cap.c index d9a26f90a..48ac96dec 100644 --- a/src/l2cap.c +++ b/src/l2cap.c @@ -2149,7 +2149,6 @@ static void l2cap_hci_event_handler(uint8_t packet_type, uint16_t cid, uint8_t * if (channel->con_handle != handle) continue; log_info("remote supported features, channel %p, cid %04x - state %u", channel, channel->local_cid, channel->state); l2cap_handle_remote_supported_features_received(channel); - break; } break;