From cf775ef4d32c946a24dbf5a113378b1de43fd183 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 18 Aug 2018 14:09:39 +0200 Subject: [PATCH] Initialize uninitialized variable --- libs/ardour/region.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc index fd7a693128..6007c3cf95 100644 --- a/libs/ardour/region.cc +++ b/libs/ardour/region.cc @@ -183,6 +183,7 @@ Region::register_properties () , _transient_user_start (0) \ , _transient_analysis_start (0) \ , _transient_analysis_end (0) \ + , _soloSelected (false) \ , _muted (Properties::muted, false) \ , _opaque (Properties::opaque, true) \ , _locked (Properties::locked, false) \