From 429355b0b351dd46bf6811a31d409922c5656106 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Sun, 7 Jun 2015 22:48:01 +0100 Subject: [PATCH] Remove doubled quotes in TOC export PERFORMER field toc_escape_text() already encloses its result in ""s, and if album_artist is empty, the resulting PERFORMER """" line makes cdrdao upset. Just remove the extra quotes. --- libs/ardour/export_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc index f30d5550b7..fc7236914f 100644 --- a/libs/ardour/export_handler.cc +++ b/libs/ardour/export_handler.cc @@ -599,7 +599,7 @@ ExportHandler::write_toc_header (CDMarkerStatus & status) status.out << "CD_DA" << endl; status.out << "CD_TEXT {" << endl << " LANGUAGE_MAP {" << endl << " 0 : EN" << endl << " }" << endl; status.out << " LANGUAGE 0 {" << endl << " TITLE " << toc_escape_cdtext (title) << endl ; - status.out << " PERFORMER \"" << toc_escape_cdtext (album_artist) << "\"" << endl; + status.out << " PERFORMER " << toc_escape_cdtext (album_artist) << endl; status.out << " }" << endl << "}" << endl; } -- 2.30.2