From eddcef9d4b81041e883626044d9dae81f8d8d9d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Nusser?= Date: Tue, 9 Feb 2016 13:09:26 +0100 Subject: Fix two valgrind errors and mark three others with a TODO comment. --- src/instrumentparser.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/instrumentparser.cc') diff --git a/src/instrumentparser.cc b/src/instrumentparser.cc index 1f25bc7..8fa147a 100644 --- a/src/instrumentparser.cc +++ b/src/instrumentparser.cc @@ -90,6 +90,7 @@ void InstrumentParser::startTag(std::string name, DEBUG(instrparser, "Instrument power set to %f\n", power); } + // TODO get rid of new or delete it properly s = new Sample(attr["name"], power); } @@ -117,6 +118,7 @@ void InstrumentParser::startTag(std::string name, } } filechannel = filechannel - 1; // 1-based in file, but zero-based internally + // TODO do those next two lines correspond with proper deletes? If not fix it. AudioFile *af = new AudioFile(path + "/" + attr["file"], filechannel); InstrumentChannel *ch = new InstrumentChannel(attr["channel"]); channellist.push_back(ch); -- cgit v1.2.3