From 07ba7461516350ca929c9f2d617ea2284c2ccddc Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Thu, 27 May 2010 22:06:16 +0000 Subject: [PATCH] Fix a warning. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26339 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/rbutilqt/base/ttscarbon.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rbutil/rbutilqt/base/ttscarbon.cpp b/rbutil/rbutilqt/base/ttscarbon.cpp index a74cb23da3..f2e0b7dba3 100644 --- a/rbutil/rbutilqt/base/ttscarbon.cpp +++ b/rbutil/rbutilqt/base/ttscarbon.cpp @@ -45,7 +45,7 @@ bool TTSCarbon::start(QString *errStr) { (void)errStr; VoiceSpec vspec; - VoiceSpec* vspecref; + VoiceSpec* vspecref = NULL; VoiceDescription vdesc; OSErr error; QString selectedVoice @@ -72,7 +72,6 @@ bool TTSCarbon::start(QString *errStr) // voice not found. Add user notification here and proceed with // system default voice. qDebug() << "selected voice not found, using system default!"; - vspecref = NULL; GetVoiceDescription(&vspec, &vdesc, sizeof(vdesc)); if(vdesc.script != -1) m_voiceScript = (CFStringBuiltInEncodings)vdesc.script;