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

Commit fa7b111d authored by Matthew Xie's avatar Matthew Xie Committed by Gerrit Code Review
Browse files

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

parents b79ba527 b7a0b6ad
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)