From: RĂ©mi Duraffort Date: Sun, 24 Aug 2008 12:22:30 +0000 (+0200) Subject: Fix #1899 as far as I can test it (in all cse this change is good). X-Git-Tag: 0.9.0~37 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=d7e7d6a95d3de22696dad5b1cb35f28e63d6ee7e;p=vlc Fix #1899 as far as I can test it (in all cse this change is good). --- diff --git a/src/playlist/item.c b/src/playlist/item.c index eba3006f69..d72e41560e 100644 --- a/src/playlist/item.c +++ b/src/playlist/item.c @@ -763,7 +763,7 @@ int playlist_TreeMove( playlist_t * p_playlist, playlist_item_t *p_item, p_playlist->p_root_category, false ); if( p_node_category && p_item_category ) - TreeMove( p_playlist, p_item_category, p_node_category, i_newpos ); + TreeMove( p_playlist, p_item_category, p_node_category, 0 ); } i_ret = VLC_SUCCESS; }