This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
ARAPluginDemo: Fix dereferencing beyond end iterator
v7.0.9
attila
3 years ago
parent
b46edc31ce
commit
f5051d4e39
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
examples/Plugins/ARAPluginDemo.h
+ 1
- 1
examples/Plugins/ARAPluginDemo.h
View File
@@ -1692,7 +1692,7 @@ private:
const auto end = chordsReader.end();
auto it = begin;
while (it->position <= quarterPosition
&& it != end
)
while (it
!= end && it
->position <= quarterPosition)
++it;
if (it != begin)
Write
Preview
Loading…
Cancel
Save