Don't crash when getting perf stats

This commit is contained in:
Hamish Milne 2020-04-01 22:50:19 +01:00
parent 5b6ee9a6ab
commit 714a85119d

View file

@ -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() {