mirror of
https://github.com/taglib/taglib.git
synced 2025-07-19 05:24:25 -04:00
Faster FLAC::FilePrivate destructor
This commit is contained in:
@ -70,7 +70,8 @@ public:
|
||||
|
||||
~FilePrivate()
|
||||
{
|
||||
for(uint i = 0; i < blocks.size(); i++) {
|
||||
uint size = blocks.size();
|
||||
for(uint i = 0; i < size; i++) {
|
||||
delete blocks[i];
|
||||
}
|
||||
delete properties;
|
||||
|
Reference in New Issue
Block a user