Fix uninitialized seek position in VectorStream

This commit is contained in:
Robbert van der Helm
2020-12-18 12:52:05 +01:00
parent 8066e1d2ee
commit 381ca253c1
3 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -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