mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-12-28 06:43:01 +05:00
Fix undefined behaviour in WaveDecoderSA (delete on void*)
This commit is contained in:
parent
48ff3a0150
commit
55a788025a
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ private:
|
|||
uint32_t m_dataSize;
|
||||
uint32_t m_offsetToData;
|
||||
size_t m_maxBlockSize = 0;
|
||||
void* m_buffer = nullptr;
|
||||
uint8_t* m_buffer = nullptr;
|
||||
|
||||
struct FormatChunk
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue