From a329de9d2f8067c95c3a60491e42e96dfcd67bbd Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 20 Nov 2020 19:42:33 +0100 Subject: [PATCH] NO-OP: help out clang-analyzer --- 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 9bed8a2e45..9d1249b7d4 100644 --- a/libs/ardour/vst3_host.cc +++ b/libs/ardour/vst3_host.cc @@ -530,7 +530,7 @@ RAMStream::RAMStream (uint8_t* data, size_t size) , _pos (0) , _readonly (true) { - if (size > 0 && reallocate_buffer (_size, true)) { + if (_size > 0 && reallocate_buffer (_size, true)) { memcpy (_data, data, _size); } else { _size = 0;