Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
9e8d440d
Commit
9e8d440d
authored
Nov 18, 2007
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't leak memory
parent
f217c5af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/input/input.c
src/input/input.c
+4
-1
No files found.
src/input/input.c
View file @
9e8d440d
...
...
@@ -2189,6 +2189,7 @@ static int InputSourceInit( input_thread_t *p_input,
/* Try access_demux if no demux given */
if
(
*
psz_demux
==
'\0'
)
{
printf
(
"******** psz_path = %s"
,
psz_path
);
in
->
p_demux
=
demux2_New
(
p_input
,
psz_access
,
psz_demux
,
psz_path
,
NULL
,
p_input
->
p
->
p_es_out
,
VLC_FALSE
);
}
...
...
@@ -2258,7 +2259,8 @@ static int InputSourceInit( input_thread_t *p_input,
{
msg_Dbg
(
p_input
,
"retrying with access `' demux `' path `%s'"
,
psz_mrl
);
psz_demux
=
strdup
(
""
);
psz_demux
=
""
;
psz_path
=
psz_mrl
;
in
->
p_access
=
access2_New
(
p_input
,
""
,
""
,
psz_mrl
,
p_input
->
b_preparsing
);
...
...
@@ -2344,6 +2346,7 @@ static int InputSourceInit( input_thread_t *p_input,
if
(
in
->
p_access
->
psz_path
)
{
const
char
*
psz_a
,
*
psz_d
;
psz_buf
=
strdup
(
in
->
p_access
->
psz_path
);
MRLSplit
(
VLC_OBJECT
(
p_input
),
psz_buf
,
&
psz_a
,
&
psz_d
,
&
psz_real_path
);
...
...
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