Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a7a50e03
Commit
a7a50e03
authored
Dec 28, 2008
by
Dan Kegel
Committed by
Alexandre Julliard
Dec 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Don't crash on PlaySound(... SND_ALIAS_ID).
parent
cdced5b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
playsound.c
dlls/winmm/playsound.c
+5
-0
No files found.
dlls/winmm/playsound.c
View file @
a7a50e03
...
...
@@ -446,6 +446,11 @@ static BOOL MULTIMEDIA_PlaySound(const void* pszSound, HMODULE hmod, DWORD fdwSo
if
((
fdwSound
&
(
SND_NOWAIT
|
SND_NOSTOP
))
&&
PlaySoundList
!=
NULL
)
return
FALSE
;
if
((
fdwSound
&
SND_ALIAS_ID
)
==
SND_ALIAS_ID
)
{
FIXME
(
"SND_ALIAS_ID not supported
\n
"
);
return
FALSE
;
}
/* alloc internal structure, if we need to play something */
if
(
pszSound
&&
!
(
fdwSound
&
SND_PURGE
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment