Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
898c9279
Commit
898c9279
authored
Mar 02, 2007
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not pass too much argument to sprintf
parent
77466c8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/playlist/loadsave.c
src/playlist/loadsave.c
+1
-2
No files found.
src/playlist/loadsave.c
View file @
898c9279
...
...
@@ -134,8 +134,7 @@ int playlist_MLDump( playlist_t *p_playlist )
return
VLC_EGENERIC
;
}
asprintf
(
&
psz_uri
,
"%s"
DIR_SEP
"%s"
,
psz_dirname
,
"ml.xsp"
,
psz_homedir
);
asprintf
(
&
psz_uri
,
"%s"
DIR_SEP
"%s"
,
psz_dirname
,
"ml.xsp"
);
stats_TimerStart
(
p_playlist
,
"ML Dump"
,
STATS_TIMER_ML_DUMP
);
playlist_Export
(
p_playlist
,
psz_uri
,
p_playlist
->
p_ml_category
,
"export-xspf"
);
...
...
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