Skip to content

Commit

Permalink
Bugfix: Fixed uninitialized atomic in AtomicParameterAttachment
Browse files Browse the repository at this point in the history
  • Loading branch information
ffAudio committed May 20, 2020
1 parent dbfff85 commit ff9c05a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Helpers/foleys_AtomicValueAttachment.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class AtomicValueAttachment : private juce::Value::Listener
}

juce::Value internalValue;
std::atomic<T> atomicValue;
std::atomic<T> atomicValue { T (0) };
};

}
1 change: 1 addition & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ PluginGuiMagic - Versions history
-----

- Add context menu option to XY-Dragger
- Bugfix: Fixed uninitialized atomic in AtomicParameterAttachment

1.1.4 - 28.04.2020
------------------
Expand Down

0 comments on commit ff9c05a

Please sign in to comment.