Don't crash when getting perf stats
This commit is contained in:
parent
5b6ee9a6ab
commit
714a85119d
|
@ -296,7 +296,8 @@ void System::PrepareReschedule() {
|
|||
}
|
||||
|
||||
PerfStats::Results System::GetAndResetPerfStats() {
|
||||
return perf_stats->GetAndResetStats(timing->GetGlobalTimeUs());
|
||||
return (perf_stats && timing) ? perf_stats->GetAndResetStats(timing->GetGlobalTimeUs())
|
||||
: PerfStats::Results{};
|
||||
}
|
||||
|
||||
void System::Reschedule() {
|
||||
|
|
Reference in New Issue