mraa.c: Fix current_plat being invalid but not NULL
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
@@ -298,12 +298,10 @@ mraa_is_sub_platform_selected()
|
|||||||
return (plat->sub_platform != NULL) && (current_plat == plat->sub_platform);
|
return (plat->sub_platform != NULL) && (current_plat == plat->sub_platform);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
mraa_boolean_t
|
mraa_boolean_t
|
||||||
mraa_pin_mode_test(int pin, mraa_pinmodes_t mode)
|
mraa_pin_mode_test(int pin, mraa_pinmodes_t mode)
|
||||||
{
|
{
|
||||||
if (current_plat == NULL) {
|
if (current_plat == NULL || current_plat->platform_type == MRAA_UNKNOWN_PLATFORM) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if (pin > (current_plat->phy_pin_count - 1) || pin < 0)
|
if (pin > (current_plat->phy_pin_count - 1) || pin < 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user