mirror of
https://github.com/wolfpld/tracy
synced 2025-04-29 20:33:52 +00:00
Fix potentially unitialized value warning
This commit is contained in:
parent
9fda60820a
commit
e98f7e5019
@ -340,7 +340,7 @@ CallstackSymbolData DecodeSymbolAddress( uint64_t ptr )
|
|||||||
|
|
||||||
CallstackSymbolData DecodeCodeAddress( uint64_t ptr )
|
CallstackSymbolData DecodeCodeAddress( uint64_t ptr )
|
||||||
{
|
{
|
||||||
CallstackSymbolData sym;
|
CallstackSymbolData sym = {};
|
||||||
const auto proc = GetCurrentProcess();
|
const auto proc = GetCurrentProcess();
|
||||||
bool done = false;
|
bool done = false;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user