Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
4b94eddd
Commit
4b94eddd
authored
Nov 30, 2014
by
Frédéric Yhuel
Committed by
Jean-Baptiste Kempf
Dec 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stream_filter: smooth: fix segfault
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
39f6a7cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
modules/stream_filter/smooth/smooth.c
modules/stream_filter/smooth/smooth.c
+5
-1
No files found.
modules/stream_filter/smooth/smooth.c
View file @
4b94eddd
...
...
@@ -756,7 +756,11 @@ static unsigned int sms_Read( stream_t *s, uint8_t *p_read, unsigned int i_read
else
{
vlc_mutex_lock
(
&
p_sys
->
lock
);
gotoNextChunk
(
p_sys
);
if
(
gotoNextChunk
(
p_sys
)
==
NULL
)
{
vlc_mutex_unlock
(
&
p_sys
->
lock
);
return
0
;
}
vlc_mutex_unlock
(
&
p_sys
->
lock
);
}
...
...
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