Skip to content
This repository has been archived by the owner on Apr 30, 2020. It is now read-only.

Commit

Permalink
Fix CodeXL-3098 GetFrameBufferImage request not handling server statu…
Browse files Browse the repository at this point in the history
…s correctly in CodeXL client
  • Loading branch information
doronofek committed May 30, 2016
1 parent d1626d9 commit ca4e080
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,8 @@ void GraphicsServerCommunication::CheckServerStatus(unsigned char* pBuffer, unsi

if (1 == bufferSize && pBuffer != nullptr)
{
appState = static_cast<TargetAppState>(*pBuffer);
int numericValue = pBuffer[0];
appState = static_cast<TargetAppState>(numericValue);
}
}

Expand Down

0 comments on commit ca4e080

Please sign in to comment.