Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
ad631d56
Commit
ad631d56
authored
Oct 14, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stored_playlist: use fs_charset_to_utf8() for URLs
parent
7cbaf11d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
NEWS
NEWS
+1
-0
stored_playlist.c
src/stored_playlist.c
+5
-2
No files found.
NEWS
View file @
ad631d56
...
@@ -3,6 +3,7 @@ ver 0.17.6 (not yet released)
...
@@ -3,6 +3,7 @@ ver 0.17.6 (not yet released)
- alsa: fix busy loop when USB sound device gets unplugged
- alsa: fix busy loop when USB sound device gets unplugged
* stored playlists:
* stored playlists:
- fix loading playlists with references to local files
- fix loading playlists with references to local files
- obey filesystem_charset for URLs
ver 0.17.5 (2013/08/04)
ver 0.17.5 (2013/08/04)
* protocol:
* protocol:
...
...
src/stored_playlist.c
View file @
ad631d56
...
@@ -287,8 +287,11 @@ spl_load(const char *utf8path, GError **error_r)
...
@@ -287,8 +287,11 @@ spl_load(const char *utf8path, GError **error_r)
continue
;
continue
;
s
=
path_utf8
;
s
=
path_utf8
;
}
else
}
else
{
s
=
g_strdup
(
s
);
s
=
fs_charset_to_utf8
(
s
);
if
(
s
==
NULL
)
continue
;
}
g_ptr_array_add
(
list
,
s
);
g_ptr_array_add
(
list
,
s
);
...
...
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