Skip to content
Snippets Groups Projects
Commit aa904ff4 authored by Henri Chataing's avatar Henri Chataing Committed by Gerrit Code Review
Browse files

Merge "[RootCanal] Fix uninitialized host supported features"

parents 9c166bff df277f94
No related branches found
No related tags found
No related merge requests found
......@@ -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};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment