13
0

VST3: Fix uninitialized variable, likely fixes #8460

This commit is contained in:
Robin Gareus 2020-11-17 02:43:55 +01:00
parent 4a8e9f28f3
commit 0d8f4eb95a
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -891,6 +891,7 @@ ROMStream::ROMStream (IBStream& src, TSize offset, TSize size)
: _stream (src)
, _offset (offset)
, _size (size)
, _pos (size)
{
_stream.addRef ();
}