Commit cacc1ffd authored by Max Kellermann's avatar Max Kellermann

decoder/mpg123: use AtScopeExit() to call mpg123_delete() during scan

parent cfe34647
......@@ -287,20 +287,19 @@ mpd_mpg123_scan_file(Path path_fs, TagHandler &handler) noexcept
return false;
}
AtScopeExit(handle) { mpg123_delete(handle); };
AudioFormat audio_format;
try {
if (!mpd_mpg123_open(handle, path_fs.c_str(), audio_format)) {
mpg123_delete(handle);
return false;
}
} catch (...) {
mpg123_delete(handle);
return false;
}
const off_t num_samples = mpg123_length(handle);
if (num_samples <= 0) {
mpg123_delete(handle);
return false;
}
......@@ -308,8 +307,6 @@ mpd_mpg123_scan_file(Path path_fs, TagHandler &handler) noexcept
/* ID3 tag support not yet implemented */
mpg123_delete(handle);
const auto duration =
SongTime::FromScale<uint64_t>(num_samples,
audio_format.sample_rate);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment