diff -r 1cee9f1b95e0 -r a180113055cb smf/smfservermodule/smfcommon/smfmusicfingerprint_p.h --- a/smf/smfservermodule/smfcommon/smfmusicfingerprint_p.h Thu Sep 23 17:20:22 2010 +0530 +++ b/smf/smfservermodule/smfcommon/smfmusicfingerprint_p.h Thu Sep 23 17:43:31 2010 +0530 @@ -30,6 +30,8 @@ */ SmfMusicFingerPrintPrivate( ) { + m_id.clear(); + m_fingerPrintData.clear(); } /** @@ -38,7 +40,8 @@ */ SmfMusicFingerPrintPrivate( const SmfMusicFingerPrintPrivate &aOther ) : QSharedData ( aOther ), - m_fingerPrintData ( aOther.m_fingerPrintData ) { } + m_fingerPrintData ( aOther.m_fingerPrintData ), + m_id (aOther.m_id) { } /** * Destructor @@ -48,6 +51,7 @@ } QByteArray m_fingerPrintData; // Finger print data + QString m_id; // Finger print id by the service provider };