Fix null pointer crash in AIDL radio HAL VTS

Bug: 277531858
Test: atest VtsHalBroadcastradioAidlTargetTest
Change-Id: Icb67c27b9a747411a9bfbd48647e6e6046cf5e8d
This commit is contained in:
Weilin Xu
2023-07-19 17:20:19 +00:00
parent d089440c51
commit 978de0a8a4

View File

@@ -997,13 +997,12 @@ TEST_P(BroadcastRadioHalTest, SetConfigFlags) {
LOG(DEBUG) << "SetConfigFlags Test";
auto get = [&](ConfigFlag flag) -> bool {
bool* gotValue = nullptr;
bool gotValue;
auto halResult = mModule->isConfigFlagSet(flag, gotValue);
auto halResult = mModule->isConfigFlagSet(flag, &gotValue);
EXPECT_FALSE(gotValue == nullptr);
EXPECT_TRUE(halResult.isOk());
return *gotValue;
return gotValue;
};
auto notSupportedError = resultToInt(Result::NOT_SUPPORTED);