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

Commit c1efe084 authored by Bidhya Sharma's avatar Bidhya Sharma Committed by Automerger Merge Worker
Browse files

Merge "RFComm: Check for nullptr in PORT_IsOpening logs" into tm-dev am: 3fc76ee7

parents 35303990 3fc76ee7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -516,7 +516,7 @@ bool PORT_IsOpening(RawAddress* bd_addr) {
      }

      LOG_INFO("RFC_MX_STATE_CONNECTED, found_port=%d, tRFC_PORT_STATE=%d",
               found_port, p_port->rfc.state);
               found_port, p_port != nullptr ? p_port->rfc.state : 0);
      if ((!found_port) ||
          (found_port && (p_port->rfc.state < RFC_STATE_OPENED))) {
        /* Port is not established yet. */