mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
fix leak: chain was not being freed in one error case
This commit is contained in:
@@ -110,6 +110,7 @@ FLAC__bool do_major_operation_on_file(const char *filename, const CommandLineOpt
|
|||||||
|
|
||||||
if(!FLAC__metadata_chain_read(chain, filename)) {
|
if(!FLAC__metadata_chain_read(chain, filename)) {
|
||||||
print_error_with_chain_status(chain, "%s: ERROR: reading metadata", filename);
|
print_error_with_chain_status(chain, "%s: ERROR: reading metadata", filename);
|
||||||
|
FLAC__metadata_chain_delete(chain);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user