Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
49a05843
Commit
49a05843
authored
Jul 31, 2015
by
Tristan Matthews
Browse files
demux: adaptative: fix uninitialized variables (cid #1313824)
parent
06d208ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/adaptative/playlist/Url.cpp
View file @
49a05843
...
...
@@ -99,9 +99,8 @@ std::string Url::toString(size_t index, const BaseRepresentation *rep) const
}
Url
::
Component
::
Component
(
const
std
::
string
&
str
,
const
MediaSegmentTemplate
*
templ_
)
:
component
(
str
),
templ
(
templ_
),
b_scheme
(
false
),
b_dir
(
false
)
{
component
=
str
;
templ
=
templ_
;
if
(
!
component
.
empty
())
{
b_dir
=
(
component
[
component
.
length
()
-
1
]
==
'/'
);
...
...
Write
Preview
Supports
Markdown
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