diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2003-12-01 22:04:52 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2003-12-01 22:04:52 +0000 |
commit | 4f8754178fb9b471e296453d76ced670cf308e76 (patch) | |
tree | 385acdf3b78680a44033459b2a0c645f0f6f54de /src | |
parent | ca00406b7e0e24da89a84d55aeaf051aad40ca67 (diff) | |
download | xine-lib-4f8754178fb9b471e296453d76ced670cf308e76.tar.gz xine-lib-4f8754178fb9b471e296453d76ced670cf308e76.tar.bz2 |
Fix QDM2 (qt-audio) decoder not working, bug in CreateMutex (win32)
CVS patchset: 5821
CVS date: 2003/12/01 22:04:52
Diffstat (limited to 'src')
-rw-r--r-- | src/libw32dll/wine/win32.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libw32dll/wine/win32.c b/src/libw32dll/wine/win32.c index 88766dcc8..64a36867a 100644 --- a/src/libw32dll/wine/win32.c +++ b/src/libw32dll/wine/win32.c @@ -857,6 +857,8 @@ static HANDLE WINAPI expCreateMutexA(void *pSecAttr, /* 10l to QTX, if CreateMutex returns a real mutex, WaitForSingleObject waits for ever, else it works ;) */ return mlist; +#else + return NULL; #endif } |