mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-01 01:03:52 +08:00
Merge branch 'GP-0_ryanmkurtz_PR-5978_xyve7_url'
This commit is contained in:
+1
-1
@@ -65,7 +65,7 @@ public final class LinuxFileUrlHandler extends AbstractFileListFlavorHandler {
|
||||
|
||||
return toFiles(transferData, s -> {
|
||||
try {
|
||||
return new File(new URL(s).toURI());
|
||||
return new File(new URL(s.replaceAll(" ", "%20")).toURI()); // fixup spaces
|
||||
}
|
||||
catch (MalformedURLException e) {
|
||||
// this could be the case that this handler is attempting to process an arbitrary
|
||||
|
||||
Reference in New Issue
Block a user