wasapi:
- fixed usage of uninitialized variable (Input)
This commit is contained in:
parent
a0eb0545a5
commit
f6d6f4e955
1 changed files with 1 additions and 1 deletions
|
|
@ -3530,7 +3530,7 @@ static HRESULT ProcessOutputBuffer(PaWasapiStream *stream, PaWasapiHostProcessor
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
static HRESULT ProcessInputBuffer(PaWasapiStream *stream, PaWasapiHostProcessor *processor)
|
static HRESULT ProcessInputBuffer(PaWasapiStream *stream, PaWasapiHostProcessor *processor)
|
||||||
{
|
{
|
||||||
HRESULT hr;
|
HRESULT hr = S_OK;
|
||||||
UINT32 frames;
|
UINT32 frames;
|
||||||
BYTE *data = NULL;
|
BYTE *data = NULL;
|
||||||
DWORD flags = 0;
|
DWORD flags = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue