From 982b95fb474d44f9fd1b9c9ece819c8e6663d334 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Tue, 29 Jul 2014 15:29:54 +0100 Subject: [PATCH] Be sure to initialise ExportFormatSpecification::_soundcloud_upload Initialise _soundcloud_upload in all constructors of ExportFormatSpecification. --- libs/ardour/export_format_specification.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ardour/export_format_specification.cc b/libs/ardour/export_format_specification.cc index d8a45ba533..9a972da0bf 100644 --- a/libs/ardour/export_format_specification.cc +++ b/libs/ardour/export_format_specification.cc @@ -184,6 +184,7 @@ ExportFormatSpecification::ExportFormatSpecification (Session & s, XMLNode const : session (s) , _silence_beginning (s) , _silence_end (s) + , _soundcloud_upload (false) { _silence_beginning.type = Time::Timecode; _silence_end.type = Time::Timecode; @@ -196,6 +197,7 @@ ExportFormatSpecification::ExportFormatSpecification (ExportFormatSpecification , session (other.session) , _silence_beginning (other.session) , _silence_end (other.session) + , _soundcloud_upload (false) { if (modify_name) { set_name (other.name() + " (copy)");