- fixed usage of uninitialized variable (Input)
This commit is contained in:
dmitrykos 2010-07-15 23:27:21 +00:00
commit f6d6f4e955

View file

@ -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;