mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-08 12:30:12 +02:00
Fix uninitialized timed caches
This could prevent resizeable plugins from being resizeable in Ardour if the initialized timestamp just happened to be greater than the current time, since the returned result would then likely be some invalid value.
This commit is contained in:
+1
-1
@@ -278,5 +278,5 @@ class TimedValueCache {
|
||||
|
||||
private:
|
||||
T value;
|
||||
time_t valid_until;
|
||||
time_t valid_until = 0;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user