Skip to content

Commit 328cd65

Browse files
committed
Build for X86 and add it as a supported architecture for cve-2015-1528
1 parent 4c646a3 commit 328cd65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/main/java/fuzion24/device/vulnerability/vulnerabilities/system/CVE20151528.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public class CVE20151528 implements VulnerabilityTest {
1717
System.loadLibrary("cve20151528");
1818
}
1919

20-
2120
@Override
2221
public String getCVEorID() {
2322
return "CVE-2015-1528";
@@ -44,6 +43,7 @@ public List<CPUArch> getSupportedArchitectures() {
4443
List<CPUArch> supportedArchs = new ArrayList<>();
4544
supportedArchs.add(CPUArch.ARM);
4645
supportedArchs.add(CPUArch.ARM7);
46+
supportedArchs.add(CPUArch.X86);
4747
return supportedArchs;
4848
}
4949
}

app/src/main/jni/Application.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ LOCAL_PATH := $(call my-dir)
22

33
include $(CLEAR_VARS)
44

5-
APP_ABI := armeabi armeabi-v7a
5+
APP_ABI := armeabi armeabi-v7a x86
66

77
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
88
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include-all

0 commit comments

Comments
 (0)