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

Commit 844a56da authored by Rahul Arya's avatar Rahul Arya Committed by Thomas Girardier
Browse files

[RootCanal] Fix uninitialized host supported features

Bug: 245578454
Test: no
Ignore-AOSP-First: Cherry-picked from AOSP
Merged-In: Ia0caa7f611bb1d264b00f0c449d51679d7f5a1b8
Change-Id: Ia0caa7f611bb1d264b00f0c449d51679d7f5a1b8
parent 38cfc90c
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};