mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
JitInterface: Fix null checking in GetProfileResults
Technically a null pointer dereference can occur here.
This commit is contained in:
parent
3bc5505272
commit
8db43501d5
@ -133,15 +133,15 @@ namespace JitInterface
|
|||||||
|
|
||||||
void GetProfileResults(ProfileStats* prof_stats)
|
void GetProfileResults(ProfileStats* prof_stats)
|
||||||
{
|
{
|
||||||
|
// Can't really do this with no jit core available
|
||||||
|
if (!jit)
|
||||||
|
return;
|
||||||
|
|
||||||
prof_stats->cost_sum = 0;
|
prof_stats->cost_sum = 0;
|
||||||
prof_stats->timecost_sum = 0;
|
prof_stats->timecost_sum = 0;
|
||||||
prof_stats->block_stats.clear();
|
prof_stats->block_stats.clear();
|
||||||
prof_stats->block_stats.reserve(jit->GetBlockCache()->GetNumBlocks());
|
prof_stats->block_stats.reserve(jit->GetBlockCache()->GetNumBlocks());
|
||||||
|
|
||||||
// Can't really do this with no jit core available
|
|
||||||
if (!jit)
|
|
||||||
return;
|
|
||||||
|
|
||||||
Core::EState old_state = Core::GetState();
|
Core::EState old_state = Core::GetState();
|
||||||
if (old_state == Core::CORE_RUN)
|
if (old_state == Core::CORE_RUN)
|
||||||
Core::SetState(Core::CORE_PAUSE);
|
Core::SetState(Core::CORE_PAUSE);
|
||||||
|
Loading…
Reference in New Issue
Block a user