mirror of
https://github.com/taglib/taglib.git
synced 2025-07-23 15:34:30 -04:00
Fix a stupid crash inside mp4file.cpp (variable not initialized)
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@978719 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
@ -40,7 +40,7 @@ using namespace TagLib;
|
||||
class MP4::File::FilePrivate
|
||||
{
|
||||
public:
|
||||
FilePrivate() : tag(0), atoms(0)
|
||||
FilePrivate() : tag(0), atoms(0), properties(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user