We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87fdd50 commit 3b471d8Copy full SHA for 3b471d8
1 file changed
soot-infoflow/src/soot/jimple/infoflow/util/SystemClassHandler.java
@@ -53,6 +53,8 @@ public static void setInstance(SystemClassHandler instance) {
53
* @return True if the given class belongs to a system package, otherwise false
54
*/
55
public boolean isClassInSystemPackage(SootClass clazz) {
56
+ if (clazz == null)
57
+ return false;
58
FlowDroidSystemClassChecked checked = (FlowDroidSystemClassChecked) clazz
59
.getTag(FlowDroidSystemClassChecked.TAG_NAME);
60
boolean r;
0 commit comments