Commit c3f9f69f authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

fixes backport [76bbe6a6]

parent 0485d0a6
...@@ -70,7 +70,7 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename , ...@@ -70,7 +70,7 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
/* And call the module ! All work is done now */ /* And call the module ! All work is done now */
int i_ret; int i_ret;
p_module = module_need( p_playlist, "playlist export", psz_type, true); p_module = module_Need( p_playlist, "playlist export", psz_type, true);
if( !p_module ) if( !p_module )
{ {
msg_Warn( p_playlist, "exporting playlist failed" ); msg_Warn( p_playlist, "exporting playlist failed" );
...@@ -78,7 +78,7 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename , ...@@ -78,7 +78,7 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
} }
else else
{ {
module_unneed( p_playlist , p_module ); module_Unneed( p_playlist , p_module );
i_ret = VLC_SUCCESS; i_ret = VLC_SUCCESS;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment