comparison audacious/playlist.c @ 2010:5f19843a038b trunk

[svn] - xmms_urldecode_path() is no longer needed due to NewVFS layer.
author nenolod
date Sat, 25 Nov 2006 19:19:56 -0800
parents 327bc75fb21a
children d3a62e1075e2
comparison
equal deleted inserted replaced
2009:8121e0180670 2010:5f19843a038b
784 if (*(tmp - 1) == '\r') 784 if (*(tmp - 1) == '\r')
785 *(tmp - 1) = '\0'; 785 *(tmp - 1) = '\0';
786 *tmp = '\0'; 786 *tmp = '\0';
787 } 787 }
788 788
789 if (!(decoded = xmms_urldecode_path(string))) 789 decoded = g_strdup(string);
790 decoded = g_strdup(string);
791 790
792 if (g_file_test(decoded, G_FILE_TEST_IS_DIR)) { 791 if (g_file_test(decoded, G_FILE_TEST_IS_DIR)) {
793 i = playlist_ins_dir(decoded, pos, FALSE); 792 i = playlist_ins_dir(decoded, pos, FALSE);
794 } 793 }
795 else { 794 else {