Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cantordust.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public byte[] getJavaData() {

public void writeBinLocation(){ // run python cleanup.py to recompile program
GhidraProvider mp = new GhidraProvider();
String path = mp.getClass(sourceFile, "Cantordust").getAbsolutePath();
String path = mp.getClass(sourceFile).getAbsolutePath();
path = path.substring(0, path.length()-16);
String fileName = currentDirectory+"ghidra_bin_location.txt";
try{
Expand Down
6 changes: 3 additions & 3 deletions GhidraProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class GhidraProvider extends JavaScriptProvider {
public GhidraProvider(){
super();
}
public File getClass(ResourceFile sourceFile, String className){
return getClassFile(sourceFile, className);
public File getClass(ResourceFile sourceFile){
return sourceFile.getFile(false);
}
}
}