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

Commit af792050 authored by Henri Chataing's avatar Henri Chataing Committed by Automerger Merge Worker
Browse files

Merge "[RootCanal] Fix uninitialized host supported features" am: aa904ff4

parents a2a2285c aa904ff4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -773,14 +773,14 @@ class LinkLayerController {

  // Host Supported Features (Vol 2, Part C § 3.3 Feature Mask Definition).
  // Page 1 of the LMP feature mask.
  uint64_t host_supported_features_;
  uint64_t host_supported_features_{};
  bool le_host_support_{false};
  bool secure_simple_pairing_host_support_{false};
  bool secure_connections_host_support_{false};

  // Le Host Supported Features (Vol 4, Part E § 7.8.3).
  // Specifies the bits indicating Host support.
  uint64_t le_host_supported_features_;
  uint64_t le_host_supported_features_{};
  bool connected_isochronous_stream_host_support_{false};
  bool connection_subrating_host_support_{false};