Improve code around fixing universal binary symbolication

#jira UE-182017
#rb Joah.Adams
#preflight 642b031d89339023eb91bccd

[CL 24895273 by calvin zheng in ue5-main branch]
This commit is contained in:
calvin zheng
2023-04-03 12:54:11 -04:00
parent 2fcfece26c
commit a625cd1b68
8 changed files with 18 additions and 14 deletions

View File

@@ -404,7 +404,7 @@ static int32 SymboliseStackInfo(FPlatformSymbolDatabaseSet& SymbolCache, TArray<
if(!Db)
{
FApplePlatformSymbolDatabase Database;
if(FPlatformSymbolication::LoadSymbolDatabaseForBinary(TEXT(""), Module.Name, Module.Report, Database))
if(FPlatformSymbolication::LoadSymbolDatabaseForBinary(TEXT(""), Module.Name, Module.Report, {}, Database))
{
SymbolCache.Add(Database);
Db = SymbolCache.Find(Module.Report);
@@ -780,4 +780,4 @@ bool FCrashDebugHelperIOS::CreateMinidumpDiagnosticReport( const FString& InCras
}
return bOK;
}
}