commit | 28cbc5b0c6a960269baea7d56c000018aafe2ec9 | [log] [tgz] |
---|---|---|
author | siminy <siminy@codeaurora.org> | Thu Jul 18 18:33:02 2019 +0800 |
committer | Gerrit - the friendly Code Review server <code-review@localhost> | Fri Jul 19 01:38:24 2019 -0700 |
tree | 9ade2655709ce61c9f5a87b9688383bf97b59fe7 | |
parent | dbfdf08be44659ad9d3f90085c59b8314361110a [diff] |
device_iot_config: Fix KW warnings Fix KW TAINT warnings Change-Id: I06083c2e00f1f20e54ebdc4c36d5ec0304f09e7a CRs-Fixed: 2492496
diff --git a/system_bt_ext/device/src/device_iot_config.cc b/system_bt_ext/device/src/device_iot_config.cc index b5b3d18..b68d852 100644 --- a/system_bt_ext/device/src/device_iot_config.cc +++ b/system_bt_ext/device/src/device_iot_config.cc
@@ -361,7 +361,11 @@ int result = 0; std::unique_lock<std::mutex> lock(config_lock); result = config_get_int(config, section, key, result); - result += 1; + if (result >= 0) { + result += 1; + } else { + result = 0; + } config_set_int(config, section, key, result); device_iot_config_save();