Merge "Free allocated varargs" into pi-dev

This commit is contained in:
TreeHugger Robot
2018-04-17 19:08:26 +00:00
committed by Android (Google) Code Review

View File

@@ -310,7 +310,7 @@ GZipSection::GZipSection(int id, const char* filename, ...) : Section(id) {
}
}
GZipSection::~GZipSection() {}
GZipSection::~GZipSection() { free(mFilenames); }
status_t GZipSection::Execute(ReportRequestSet* requests) const {
// Reads the files in order, use the first available one.