path: removed superfluous error check in path_set_fs_charset()
The code which had a possible error condition had been removed.
This commit is contained in:
parent
5b2e981253
commit
19d3345ab8
@ -67,18 +67,10 @@ char *utf8_to_fs_charset(char *dst, const char *str)
|
|||||||
|
|
||||||
void path_set_fs_charset(const char *charset)
|
void path_set_fs_charset(const char *charset)
|
||||||
{
|
{
|
||||||
int error = 0;
|
|
||||||
|
|
||||||
g_free(fs_charset);
|
g_free(fs_charset);
|
||||||
fs_charset = g_strdup(charset);
|
fs_charset = g_strdup(charset);
|
||||||
|
|
||||||
DEBUG("path_set_fs_charset: fs charset is: %s\n", fs_charset);
|
DEBUG("path_set_fs_charset: fs charset is: %s\n", fs_charset);
|
||||||
|
|
||||||
if (error) {
|
|
||||||
free(fs_charset);
|
|
||||||
WARNING("setting fs charset to ISO-8859-1!\n");
|
|
||||||
fs_charset = xstrdup("ISO-8859-1");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *path_get_fs_charset(void)
|
const char *path_get_fs_charset(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user