From b30ba842d84edf920080ee514e8070daf1caba5d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 17 Sep 2012 21:09:12 +0000 Subject: [PATCH] fix missing variable initialization git-svn-id: svn://localhost/ardour2/branches/3.0@13194 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/evoral/src/ControlList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/evoral/src/ControlList.cpp b/libs/evoral/src/ControlList.cpp index 83222857ed..d2ef1fe246 100644 --- a/libs/evoral/src/ControlList.cpp +++ b/libs/evoral/src/ControlList.cpp @@ -607,7 +607,7 @@ ControlList::add (double when, double value) } else { DEBUG_TRACE (DEBUG::ControlList, string_compose ("@%1 insert new point at %2 at iterator at %3\n", this, when, (*most_recent_insert_iterator)->when)); - bool done; + bool done = false; /* check if would just be adding to a straight line, * and don't add another point if so