Commit 7bd0c43f authored by Zac Brown's avatar Zac Brown Committed by Alexandre Julliard

winealsa.drv: Initialize a variable in MIX_close.

parent 42e2c99c
...@@ -762,7 +762,7 @@ static DWORD MIX_Open(UINT wDevID, LPMIXEROPENDESC desc, DWORD_PTR flags) ...@@ -762,7 +762,7 @@ static DWORD MIX_Open(UINT wDevID, LPMIXEROPENDESC desc, DWORD_PTR flags)
static DWORD MIX_Close(UINT wDevID) static DWORD MIX_Close(UINT wDevID)
{ {
int x; int x = 0;
mixer *mmixer = MIX_GetMix(wDevID); mixer *mmixer = MIX_GetMix(wDevID);
if (!mmixer) if (!mmixer)
return MMSYSERR_BADDEVICEID; return MMSYSERR_BADDEVICEID;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment