Fix ExportFormatSpecification copy-c'tor
authorRobin Gareus <robin@gareus.org>
Thu, 13 Dec 2018 16:07:08 +0000 (17:07 +0100)
committerRobin Gareus <robin@gareus.org>
Thu, 13 Dec 2018 16:07:08 +0000 (17:07 +0100)
This initialize some otherwise uninitalized variables and may fix
cue/toc export oddities

libs/ardour/export_format_specification.cc

index 437cc3a0596e2c92d19152bc1efe3d49b99b686b..d976cd6e97830750a92061dc1dccde7ac3d7254f 100644 (file)
@@ -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)
 {