Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
426
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
7036c75d
Commit
7036c75d
authored
2 years ago
by
Thomas Guillem
Committed by
Steve Lhomme
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
winstore: fix memleak if device failed
parent
328635ea
No related branches found
Branches containing commit
No related tags found
1 merge request
!2578
winstore: misc fixes (memleak, assert)
Pipeline
#266905
passed with stage
in 15 minutes and 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/audio_output/winstore.c
+3
-0
3 additions, 0 deletions
modules/audio_output/winstore.c
with
3 additions
and
0 deletions
modules/audio_output/winstore.c
+
3
−
0
View file @
7036c75d
...
...
@@ -370,7 +370,10 @@ static void Play(audio_output_t *aout, block_t *block, vlc_tick_t date)
{
aout_sys_t
*
sys
=
aout
->
sys
;
if
(
unlikely
(
sys
->
client
==
NULL
)
)
{
block_Release
(
block
);
return
;
}
EnterMTA
();
HRESULT
hr
=
aout_stream_Play
(
sys
->
stream
,
block
,
date
);
...
...
This diff is collapsed.
Click to expand it.
Johannes Kauffmann
@JohannesKauffmann
mentioned in merge request
!3810 (merged)
·
1 year ago
mentioned in merge request
!3810 (merged)
mentioned in merge request !3810
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment