From 5a27cb9780a17635c5b06cd2cab5b8ebf91e05e4 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 17 Nov 2020 03:16:30 +0100 Subject: [PATCH] Fix copy/edit in 0d8f4eb95a52 --- libs/ardour/vst3_host.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/vst3_host.cc b/libs/ardour/vst3_host.cc index c491dee88d..9bed8a2e45 100644 --- a/libs/ardour/vst3_host.cc +++ b/libs/ardour/vst3_host.cc @@ -891,7 +891,7 @@ ROMStream::ROMStream (IBStream& src, TSize offset, TSize size) : _stream (src) , _offset (offset) , _size (size) - , _pos (size) + , _pos (0) { _stream.addRef (); }