diff --git a/src/arm/android/properties.c b/src/arm/android/properties.c index 51a2def9..4f7b1467 100644 --- a/src/arm/android/properties.c +++ b/src/arm/android/properties.c @@ -48,14 +48,15 @@ void cpuinfo_arm_android_parse_properties(struct cpuinfo_android_properties prop cpuinfo_android_property_get("ro.board.platform", properties->ro_board_platform); cpuinfo_log_debug("read ro.board.platform = \"%.*s\"", ro_board_platform_length, properties->ro_board_platform); + const int ro_arch_length = cpuinfo_android_property_get("ro.arch", properties->ro_arch); + cpuinfo_log_debug("read ro.arch = \"%.*s\"", ro_arch_length, properties->ro_arch); + +#ifndef CPUINFO_AVOID_SELINUX_VIOLATIONS const int ro_mediatek_platform_length = cpuinfo_android_property_get("ro.mediatek.platform", properties->ro_mediatek_platform); cpuinfo_log_debug( "read ro.mediatek.platform = \"%.*s\"", ro_mediatek_platform_length, properties->ro_mediatek_platform); - const int ro_arch_length = cpuinfo_android_property_get("ro.arch", properties->ro_arch); - cpuinfo_log_debug("read ro.arch = \"%.*s\"", ro_arch_length, properties->ro_arch); - const int ro_chipname_length = cpuinfo_android_property_get("ro.chipname", properties->ro_chipname); cpuinfo_log_debug("read ro.chipname = \"%.*s\"", ro_chipname_length, properties->ro_chipname); @@ -63,4 +64,9 @@ void cpuinfo_arm_android_parse_properties(struct cpuinfo_android_properties prop cpuinfo_android_property_get("ro.hardware.chipname", properties->ro_hardware_chipname); cpuinfo_log_debug( "read ro.hardware.chipname = \"%.*s\"", ro_hardware_chipname_length, properties->ro_hardware_chipname); +#else + memset(properties->ro_mediatek_platform, 0, sizeof(properties->ro_mediatek_platform)); + memset(properties->ro_chipname, 0, sizeof(properties->ro_chipname)); + memset(properties->ro_hardware_chipname, 0, sizeof(properties->ro_hardware_chipname)); +#endif // CPUINFO_AVOID_SELINUX_VIOLATIONS }