Skip to content

Commit c720531

Browse files
committed
fixes #350
1 parent 8fdfe23 commit c720531

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

cSploit/src/org/csploit/android/net/metasploit/MsfExploit.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ public MsfExploit(String name, String summary, String description, Ranking rank,
8787
this.authors = authors;
8888
this.platforms = platforms;
8989
this.architectures = architectures;
90-
this.references.addAll(references);
90+
if(references != null) {
91+
this.references.addAll(references);
92+
}
9193

9294
refresh();
9395
}

0 commit comments

Comments
 (0)