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

Commit bb4bd5b4 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "RootCanal: Initialize connecting states to false"

parents 53843647 fa02abfd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -62,9 +62,9 @@ class AclConnectionHandler {

 private:
  std::unordered_map<uint16_t, AclConnection> acl_connections_;
  bool classic_connection_pending_;
  bool classic_connection_pending_{false};
  Address pending_connection_address_;
  bool le_connection_pending_;
  bool le_connection_pending_{false};
  Address pending_le_connection_address_;
  uint8_t pending_le_connection_address_type_;
  uint16_t GetUnusedHandle();
+1 −1
Original line number Diff line number Diff line
@@ -260,7 +260,7 @@ class LinkLayerController {
  uint8_t le_scan_filter_duplicates_;
  uint8_t le_address_type_;

  bool le_connect_;
  bool le_connect_{false};
  uint16_t le_connection_interval_min_;
  uint16_t le_connection_interval_max_;
  uint16_t le_connection_latency_;