summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-12-13 17:07:08 +0100
committerRobin Gareus <robin@gareus.org>2018-12-13 17:07:08 +0100
commit95a61717faa4b427be0e7821ee91f7df81065815 (patch)
treefd60ccfd7aed2f22f3d466ba4b857fc494d406f6
parent5d2a03578c3f0d0f39562546bd3e4be9be08d2d4 (diff)
Fix ExportFormatSpecification copy-c'tor
This initialize some otherwise uninitalized variables and may fix cue/toc export oddities
-rw-r--r--libs/ardour/export_format_specification.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/export_format_specification.cc b/libs/ardour/export_format_specification.cc
index 437cc3a059..d976cd6e97 100644
--- a/libs/ardour/export_format_specification.cc
+++ b/libs/ardour/export_format_specification.cc
@@ -205,7 +205,11 @@ ExportFormatSpecification::ExportFormatSpecification (ExportFormatSpecification
, session (other.session)
, _silence_beginning (other.session)
, _silence_end (other.session)
+ , _with_toc (other._with_toc)
+ , _with_cue (other._with_cue)
+ , _with_mp4chaps (other._with_mp4chaps)
, _soundcloud_upload (false)
+ , _command (other._command)
, _analyse (other._analyse)
, _codec_quality (other._codec_quality)
{