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

Commit df277f94 authored by Rahul Arya's avatar Rahul Arya
Browse files

[RootCanal] Fix uninitialized host supported features

Bug: 237447510
Test: no
Change-Id: Ia0caa7f611bb1d264b00f0c449d51679d7f5a1b8
parent 1d1e5b5c
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};