From f6d6f4e9557c35537bef01988a0aab0b85412224 Mon Sep 17 00:00:00 2001 From: dmitrykos Date: Thu, 15 Jul 2010 23:27:21 +0000 Subject: [PATCH] wasapi: - fixed usage of uninitialized variable (Input) --- src/hostapi/wasapi/pa_win_wasapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hostapi/wasapi/pa_win_wasapi.c b/src/hostapi/wasapi/pa_win_wasapi.c index 9c47cc5..9ca671c 100644 --- a/src/hostapi/wasapi/pa_win_wasapi.c +++ b/src/hostapi/wasapi/pa_win_wasapi.c @@ -3530,7 +3530,7 @@ static HRESULT ProcessOutputBuffer(PaWasapiStream *stream, PaWasapiHostProcessor // ------------------------------------------------------------------------------------------ static HRESULT ProcessInputBuffer(PaWasapiStream *stream, PaWasapiHostProcessor *processor) { - HRESULT hr; + HRESULT hr = S_OK; UINT32 frames; BYTE *data = NULL; DWORD flags = 0; -- 2.43.0