mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Add missing server query space updates to failure handling.
This commit is contained in:
parent
0d209b80f4
commit
a5e0336936
@ -2953,6 +2953,7 @@ void Worker::DispatchFailure( const QueueItem& ev, const char*& ptr )
|
||||
if( ev.hdr.type == QueueType::FrameImageData ||
|
||||
ev.hdr.type == QueueType::SymbolCode )
|
||||
{
|
||||
if( ev.hdr.type == QueueType::SymbolCode ) m_serverQuerySpaceLeft++;
|
||||
uint32_t sz;
|
||||
memcpy( &sz, ptr, sizeof( sz ) );
|
||||
ptr += sizeof( sz ) + sz;
|
||||
@ -3018,6 +3019,7 @@ void Worker::DispatchFailure( const QueueItem& ev, const char*& ptr )
|
||||
ProcessCallstackFrame( ev.callstackFrame, false );
|
||||
break;
|
||||
case QueueType::SymbolInformation:
|
||||
case QueueType::CodeInformation:
|
||||
case QueueType::ParamPingback:
|
||||
m_serverQuerySpaceLeft++;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user