Nice catch from Gunnar Roth -- the iterator was invalid here.

BUG:94662


git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@385470 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Scott Wheeler 2005-02-02 19:04:54 +00:00
parent af8b4c7291
commit 1aff3947ef

View File

@ -320,7 +320,7 @@ void ID3v2::Tag::removeFrame(Frame *frame, bool del)
// ...and delete as desired
if(del)
delete *it;
delete frame;
}
void ID3v2::Tag::removeFrames(const ByteVector &id)