1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Can't read negative number of bytes.

This completely ignores error handling, which probably should be added.
The code behavior doesn't change, as the existing comparisons and
asserts already promoted the signed value to unsigned.
This commit is contained in:
Bartosz Taudul
2019-06-22 14:08:48 +02:00
parent 1c41229766
commit fadf8e3e0a
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -202,7 +202,7 @@ private:
if( fread( &sz, 1, sizeof( sz ), m_file ) == sizeof( sz ) )
{
fread( m_lz4buf, 1, sz, m_file );
m_lastBlock = LZ4_decompress_safe_continue( m_stream, m_lz4buf, m_second, sz, BufSize );
m_lastBlock = (size_t)LZ4_decompress_safe_continue( m_stream, m_lz4buf, m_second, sz, BufSize );
}
else
{
@@ -219,7 +219,7 @@ private:
char* m_buf;
char* m_second;
size_t m_offset;
int m_lastBlock;
size_t m_lastBlock;
std::atomic<bool> m_signalSwitch;
std::atomic<bool> m_signalAvailable;