mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-08 22:55:44 +01:00
Fix segfault due to uninitialised variable
git-svn-id: svn://localhost/ardour2/trunk@2299 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
e0eb5fd335
commit
4bd83a409e
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ struct ControlEvent {
|
|||
}
|
||||
|
||||
ControlEvent (const ControlEvent& other)
|
||||
: when (other.when), value (other.value) {
|
||||
: when (other.when), value (other.value), coeff (0) {
|
||||
if (other.coeff) {
|
||||
create_coeffs();
|
||||
for (size_t i=0; i < 4; ++i)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue