mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-01-10 06:27:59 -05:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
@@ -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")) {
|
||||
|
||||
Reference in New Issue
Block a user