mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:26:10 +00:00
mcicda: Give a name to the critical sections.
This commit is contained in:
parent
f2043352d1
commit
4db0d0da19
1 changed files with 2 additions and 0 deletions
|
@ -179,6 +179,7 @@ static DWORD MCICDA_drvOpen(LPCWSTR str, LPMCI_OPEN_DRIVER_PARMSW modp)
|
||||||
modp->wCustomCommandTable = MCI_NO_COMMAND_TABLE;
|
modp->wCustomCommandTable = MCI_NO_COMMAND_TABLE;
|
||||||
modp->wType = MCI_DEVTYPE_CD_AUDIO;
|
modp->wType = MCI_DEVTYPE_CD_AUDIO;
|
||||||
InitializeCriticalSection(&wmcda->cs);
|
InitializeCriticalSection(&wmcda->cs);
|
||||||
|
wmcda->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": WINE_MCICDAUDIO.cs");
|
||||||
return modp->wDeviceID;
|
return modp->wDeviceID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -190,6 +191,7 @@ static DWORD MCICDA_drvClose(DWORD dwDevID)
|
||||||
WINE_MCICDAUDIO* wmcda = (WINE_MCICDAUDIO*)mciGetDriverData(dwDevID);
|
WINE_MCICDAUDIO* wmcda = (WINE_MCICDAUDIO*)mciGetDriverData(dwDevID);
|
||||||
|
|
||||||
if (wmcda) {
|
if (wmcda) {
|
||||||
|
wmcda->cs.DebugInfo->Spare[0] = 0;
|
||||||
DeleteCriticalSection(&wmcda->cs);
|
DeleteCriticalSection(&wmcda->cs);
|
||||||
HeapFree(GetProcessHeap(), 0, wmcda);
|
HeapFree(GetProcessHeap(), 0, wmcda);
|
||||||
mciSetDriverData(dwDevID, 0);
|
mciSetDriverData(dwDevID, 0);
|
||||||
|
|
Loading…
Reference in a new issue