Skip to content

Commit b3ad6b7

Browse files
committed
fixes #392
1 parent 81bcc7e commit b3ad6b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cSploit/src/org/csploit/android/net/datasource/CVEDetails.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ private void checkCompatibility(String html) {
5858

5959
target = exploit.getParent();
6060

61-
if(!target.hasOpenPorts()) {
61+
if(target == null || !target.hasOpenPorts()) {
6262
return;
6363
}
6464

0 commit comments

Comments
 (0)