Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03cb1638 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix L2CAP hold queue null pointer issue" am: 79312245 am: 05c65faa

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1788387

Change-Id: Ifaadb36d91d88998ce3a66e4874662a19e62f016
parents 565c840f 05c65faa
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1576,8 +1576,9 @@ void l2c_enqueue_peer_data(tL2C_CCB* p_ccb, BT_HDR* p_buf) {
        "p_ccb->local_cid = %u p_ccb->remote_cid = %u",
        p_ccb, p_ccb->in_use, p_ccb->chnl_state, p_ccb->local_cid,
        p_ccb->remote_cid);
  }
  } else {
    fixed_queue_enqueue(p_ccb->xmit_hold_q, p_buf);
  }

  l2cu_check_channel_congestion(p_ccb);