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
9dfe9ce6
Commit
9dfe9ce6
authored
Jun 29, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dummy string copy
parent
326f4d40
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
+0
-8
modules/demux/playlist/ram.c
modules/demux/playlist/ram.c
+0
-8
No files found.
modules/demux/playlist/ram.c
View file @
9dfe9ce6
...
...
@@ -234,7 +234,6 @@ static int ParseTime( const char *s, size_t i_strlen)
static
int
Demux
(
demux_t
*
p_demux
)
{
char
*
psz_line
;
char
*
psz_name
=
NULL
;
char
*
psz_artist
=
NULL
,
*
psz_album
=
NULL
,
*
psz_genre
=
NULL
,
*
psz_year
=
NULL
;
char
*
psz_author
=
NULL
,
*
psz_title
=
NULL
,
*
psz_copyright
=
NULL
,
*
psz_cdnum
=
NULL
,
*
psz_comments
=
NULL
;
int
i_parsed_duration
=
0
;
...
...
@@ -263,12 +262,6 @@ static int Demux( demux_t *p_demux )
{
char
*
psz_mrl
,
*
psz_option_start
,
*
psz_option_next
,
*
psz_temp_mrl
,
*
psz_option
;
char
*
psz_param
,
*
psz_value
;
if
(
!
psz_name
||
!*
psz_name
)
{
/* Default filename as name for relative entries
TODO: Currently not used. Either remove or use */
psz_name
=
MaybeFromLocaleDup
(
psz_parse
);
}
/* Get the MRL from the file. Note that this might contain parameters of form ?param1=value1¶m2=value2 in a RAM file */
psz_mrl
=
ProcessMRL
(
psz_parse
,
p_demux
->
p_sys
->
psz_prefix
);
...
...
@@ -390,7 +383,6 @@ static int Demux( demux_t *p_demux )
/* Cleanup state */
while
(
i_options
--
)
free
(
(
char
*
)
ppsz_options
[
i_options
]
);
FREENULL
(
ppsz_options
);
FREENULL
(
psz_name
);
FREENULL
(
psz_artist
);
FREENULL
(
psz_title
);
FREENULL
(
psz_author
);
...
...
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