Commit 983312cb authored by Rémi Duraffort's avatar Rémi Duraffort

Fix a little bug in the playlist sorting.

parent 7440f8d3
...@@ -144,7 +144,7 @@ static int playlist_ItemArraySort( playlist_t *p_playlist, int i_items, ...@@ -144,7 +144,7 @@ static int playlist_ItemArraySort( playlist_t *p_playlist, int i_items,
} \ } \
else \ else \
{ \ { \
i_test = strcmp( psz_b, psz_a ); \ i_test = strcmp( psz_a, psz_b ); \
} \ } \
free( psz_a ); \ free( psz_a ); \
free( psz_b ); \ free( psz_b ); \
......
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