mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-11 06:42:11 +02:00
Fix uninitialized seek position in VectorStream
This commit is contained in:
@@ -225,7 +225,7 @@ class VectorStream : public Steinberg::IBStream,
|
||||
|
||||
private:
|
||||
std::vector<uint8_t> buffer;
|
||||
size_t seek_position;
|
||||
size_t seek_position = 0;
|
||||
};
|
||||
|
||||
#pragma GCC diagnostic pop
|
||||
|
||||
Reference in New Issue
Block a user