We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f824bc9 commit cc3940dCopy full SHA for cc3940d
GZip.h
@@ -82,7 +82,7 @@ class GZipPack
82
void InitBuffer(const uint8_t* pIn, uint32_t nInCount)
83
{
84
m_strm.avail_in = nInCount;
85
- m_strm.next_in = pIn;
+ m_strm.next_in = reinterpret_cast<const Bytef*>(pIn);
86
}
87
88
int Inflate(unsigned char* pOut, size_t* pnOutCount, int nFlush)
0 commit comments