Hmm, not good -- missing "ref" here so that the reference count wasn't

being incremented on copy.


git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@292618 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Scott Wheeler 2004-02-29 20:02:18 +00:00
parent 9a63f34627
commit 8cd5093faa

View File

@ -101,6 +101,8 @@ FileRef &FileRef::operator=(const FileRef &ref)
d = ref.d;
d->ref();
return *this;
}