Skip to content

Commit e737013

Browse files
committed
Make sure the case of the shared obj lib match up properly
1 parent c9994e8 commit e737013

File tree

5 files changed

+3
-6
lines changed

5 files changed

+3
-6
lines changed

app/app.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module external.linked.project.id=":app" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" external.system.module.group="android-vts" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
2+
<module external.linked.project.id=":app" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" external.system.module.group="androidVTS" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
33
<component name="FacetManager">
44
<facet type="android-gradle" name="Android-Gradle">
55
<configuration>

app/src/main/java/fuzion24/device/vulnerability/vulnerabilities/kernel/CVE_2013_6282.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ public class CVE_2013_6282 implements VulnerabilityTest {
1313
System.loadLibrary("CVE-2013-6282");
1414
}
1515

16-
17-
1816
@Override
1917
public List<CPUArch> getSupportedArchitectures() {
2018
ArrayList<CPUArch> archs = new ArrayList<CPUArch>();

app/src/main/java/fuzion24/device/vulnerability/vulnerabilities/kernel/CVE_2014_4943.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ public class CVE_2014_4943 implements VulnerabilityTest {
1313
System.loadLibrary("CVE-2014-4943");
1414
}
1515

16-
1716
@Override
1817
public List<CPUArch> getSupportedArchitectures() {
1918
ArrayList<CPUArch> archs = new ArrayList<CPUArch>();

app/src/main/jni/Android.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ LOCAL_PATH := $(call my-dir)
33
################################
44
include $(CLEAR_VARS)
55

6-
LOCAL_MODULE := cve-2013-6282
6+
LOCAL_MODULE := CVE-2013-6282
77
LOCAL_SRC_FILES := put_get_user_check.c
88

99
LOCAL_CFLAGS += -Ijni/include/

app/src/main/jni/put_get_user_check.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ int checkIsVulnerable()
3535
return errno == 0 || errno == 1 ? -1 : errno ; //Bad test
3636
}
3737

38-
JNIEXPORT jint JNICALL Java_fuzion24_device_vulnerability_vulnerabilities_kernel_CVE_12013_16123_checkGetPutUser(JNIEnv *env, jobject obj){
38+
JNIEXPORT jint JNICALL Java_fuzion24_device_vulnerability_vulnerabilities_kernel_CVE_12013_16282_checkGetPutUser(JNIEnv *env, jobject obj){
3939
return checkIsVulnerable();
4040
}
4141

0 commit comments

Comments
 (0)