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
e35f2085
Commit
e35f2085
authored
Aug 27, 2013
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
httplive: remove write-only variable
parent
834987a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
modules/stream_filter/httplive.c
modules/stream_filter/httplive.c
+0
-3
No files found.
modules/stream_filter/httplive.c
View file @
e35f2085
...
@@ -1003,8 +1003,6 @@ static int parse_M3U8(stream_t *s, vlc_array_t *streams, uint8_t *buffer, const
...
@@ -1003,8 +1003,6 @@ static int parse_M3U8(stream_t *s, vlc_array_t *streams, uint8_t *buffer, const
/* M3U8 Meta Index file */
/* M3U8 Meta Index file */
do
{
do
{
bool
failed_to_download_stream_m3u8
=
false
;
/* Next line */
/* Next line */
line
=
ReadLine
(
p_begin
,
&
p_read
,
p_end
-
p_begin
);
line
=
ReadLine
(
p_begin
,
&
p_read
,
p_end
-
p_begin
);
if
(
line
==
NULL
)
if
(
line
==
NULL
)
...
@@ -1043,7 +1041,6 @@ static int parse_M3U8(stream_t *s, vlc_array_t *streams, uint8_t *buffer, const
...
@@ -1043,7 +1041,6 @@ static int parse_M3U8(stream_t *s, vlc_array_t *streams, uint8_t *buffer, const
if
(
len
<
0
)
if
(
len
<
0
)
{
{
msg_Warn
(
s
,
"failed to read %s, continue for other streams"
,
hls
->
url
);
msg_Warn
(
s
,
"failed to read %s, continue for other streams"
,
hls
->
url
);
failed_to_download_stream_m3u8
=
true
;
/* remove stream just added */
/* remove stream just added */
if
(
new_stream_added
)
if
(
new_stream_added
)
...
...
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