From 72594a6066a9701f4f39cc52242eebb65aa9cf44 Mon Sep 17 00:00:00 2001 From: Tomasz Marciniak Date: Tue, 28 Apr 2015 15:08:02 +0200 Subject: [PATCH] [Bluetooth] Initialize user_request_list_ with 0 values. [Verification] Code compiles without errors. TCT automated passrate 100% 212/212 Change-Id: I8ead20b0a1e3ef1fda1c4b5d1f2c76b5ce6748aa Signed-off-by: Tomasz Marciniak --- src/bluetooth/bluetooth_adapter.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bluetooth/bluetooth_adapter.cc b/src/bluetooth/bluetooth_adapter.cc index e8ff334a..d9596239 100644 --- a/src/bluetooth/bluetooth_adapter.cc +++ b/src/bluetooth/bluetooth_adapter.cc @@ -340,7 +340,8 @@ BluetoothAdapter::BluetoothAdapter(BluetoothInstance& instance) : is_visible_(false), is_powered_(false), is_initialized_(false), - instance_(instance) + instance_(instance), + user_request_list_() { LoggerD("Entered"); if (BT_ERROR_NONE == bt_initialize()) { -- 2.34.1