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
0459802a
Commit
0459802a
authored
Jan 06, 2024
by
Fabian Maurer
Committed by
Alexandre Julliard
Jan 17, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmsynth: Leave critical section when out of memory (Coverity).
parent
1d53204e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
synth.c
dlls/dmsynth/synth.c
+5
-1
No files found.
dlls/dmsynth/synth.c
View file @
0459802a
...
...
@@ -585,7 +585,11 @@ static HRESULT WINAPI synth_Open(IDirectMusicSynth8 *iface, DMUS_PORTPARAMS *par
!!
(
actual
.
dwEffectFlags
&
DMUS_EFFECT_REVERB
));
fluid_settings_setint
(
This
->
fluid_settings
,
"synth.chorus.active"
,
!!
(
actual
.
dwEffectFlags
&
DMUS_EFFECT_CHORUS
));
if
(
!
(
This
->
fluid_synth
=
new_fluid_synth
(
This
->
fluid_settings
)))
return
E_OUTOFMEMORY
;
if
(
!
(
This
->
fluid_synth
=
new_fluid_synth
(
This
->
fluid_settings
)))
{
LeaveCriticalSection
(
&
This
->
cs
);
return
E_OUTOFMEMORY
;
}
if
((
id
=
fluid_synth_add_sfont
(
This
->
fluid_synth
,
This
->
fluid_sfont
))
==
FLUID_FAILED
)
WARN
(
"Failed to add fluid_sfont to fluid_synth
\n
"
);
synth_reset_default_values
(
This
);
...
...
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