mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-02-07 19:20:14 +00:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
commit
a4111b1592
@ -195,10 +195,7 @@ public class DyldCacheUtils {
|
||||
if (file != null && shouldCombineSplitFiles) {
|
||||
String baseName = file.getName();
|
||||
File[] splitFiles = file.getParentFile().listFiles(f -> {
|
||||
if (!f.getName().startsWith(baseName)) {
|
||||
return false;
|
||||
}
|
||||
if (f.getName().equals(baseName)) {
|
||||
if (!f.getName().startsWith(baseName + ".")) {
|
||||
return false;
|
||||
}
|
||||
if (f.getName().toLowerCase().endsWith(".map")) {
|
||||
|
Loading…
Reference in New Issue
Block a user