mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Add a null pointer check for wifi_chip in
configureChipToSupportIfaceTypeInternal.
Bug: 253411345
Test: atest VtsHalHostapdTargetTest
Change-Id: Ieb6de7311de8d98742e302b35196bee7fa7661ed
(cherry picked from commit b1c2d07e4e)
This commit is contained in:
@@ -66,7 +66,7 @@ bool findAnyModeSupportingIfaceType(
|
|||||||
bool configureChipToSupportIfaceTypeInternal(const sp<IWifiChip>& wifi_chip,
|
bool configureChipToSupportIfaceTypeInternal(const sp<IWifiChip>& wifi_chip,
|
||||||
IfaceType type,
|
IfaceType type,
|
||||||
ChipModeId* configured_mode_id) {
|
ChipModeId* configured_mode_id) {
|
||||||
if (!configured_mode_id) {
|
if (!configured_mode_id || !wifi_chip.get()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const auto& status_and_modes = HIDL_INVOKE(wifi_chip, getAvailableModes);
|
const auto& status_and_modes = HIDL_INVOKE(wifi_chip, getAvailableModes);
|
||||||
|
|||||||
Reference in New Issue
Block a user