summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsamr7 <samr7@126591fb-c623-4b62-a76d-97a8e4f34109>2008-11-30 11:03:25 +0000
committersamr7 <samr7@126591fb-c623-4b62-a76d-97a8e4f34109>2008-11-30 11:03:25 +0000
commite2f2a2bef6ff450ea4fe08b8ec42740c0c1f02f5 (patch)
treea54b805f85dfc0cbcb38c39b2f0a3715bcc3adba
parent3f4569977d4981a8448174da479de68688cf4727 (diff)
downloadnohands-e2f2a2bef6ff450ea4fe08b8ec42740c0c1f02f5.tar.gz
Don't forget to initialize a local variable.
git-svn-id: http://nohands.svn.sourceforge.net/svnroot/nohands/trunk@51 126591fb-c623-4b62-a76d-97a8e4f34109
-rw-r--r--libhfp/soundio-util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhfp/soundio-util.cpp b/libhfp/soundio-util.cpp
index 0d1bf3b..c3630f5 100644
--- a/libhfp/soundio-util.cpp
+++ b/libhfp/soundio-util.cpp
@@ -1004,7 +1004,7 @@ public:
SoundIoFltSpeex *SoundIoFltCreateSpeex(DispatchInterface *ei,
ErrorInfo *error)
{
- SoundIoFltSpeex *fltp;
+ SoundIoFltSpeex *fltp = 0;
#if defined(USE_SPEEXDSP)
fltp = new SoundIoFltSpeexImpl(ei);