From a2eb80866080537dea3c5009153a1d0dc8b0817f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 3 Feb 2011 00:10:09 +0000 Subject: [PATCH] Fix uninitialised variable. git-svn-id: svn://localhost/ardour2/branches/3.0@8683 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/panner.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/panner.cc b/libs/ardour/panner.cc index c94f668c85..9ad49c12c5 100644 --- a/libs/ardour/panner.cc +++ b/libs/ardour/panner.cc @@ -29,6 +29,7 @@ using namespace ARDOUR; Panner::Panner (boost::shared_ptr p) : _pannable (p) + , _bypassed (false) { }