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

Commit f3f8c6eb authored by Matthew Xie's avatar Matthew Xie Committed by Android Git Automerger
Browse files

am fa7b111d: Merge "Fix bug in PAN code where no new PAN connections can be made."

* commit 'fa7b111d':
  Fix bug in PAN code where no new PAN connections can be made.
parents b3bf2db7 fa7b111d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -465,7 +465,7 @@ tPAN_RESULT PAN_Disconnect (UINT16 handle)
    }

    result = BNEP_Disconnect (pcb->handle);
    if (pcb->con_state == PAN_STATE_CONNECTED)
    if (pcb->con_state != PAN_STATE_IDLE)
        pan_cb.num_conns--;

    if (pan_cb.pan_bridge_req_cb && pcb->src_uuid == UUID_SERVCLASS_NAP)