diff options
Diffstat (limited to '')
-rw-r--r-- | src/fs/Charset.cxx | 6 | ||||
-rw-r--r-- | src/fs/Config.cxx | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/fs/Charset.cxx b/src/fs/Charset.cxx index 39bb36e77..dad5779f9 100644 --- a/src/fs/Charset.cxx +++ b/src/fs/Charset.cxx @@ -48,8 +48,8 @@ static bool IsSupportedCharset(const char *charset) { /* convert a space to check if the charset is valid */ - char *test = g_convert(" ", 1, charset, "UTF-8", NULL, NULL, NULL); - if (test == NULL) + char *test = g_convert(" ", 1, charset, "UTF-8", nullptr, nullptr, nullptr); + if (test == nullptr) return false; g_free(test); @@ -59,7 +59,7 @@ IsSupportedCharset(const char *charset) void SetFSCharset(const char *charset) { - assert(charset != NULL); + assert(charset != nullptr); if (!IsSupportedCharset(charset)) FormatFatalError("invalid filesystem charset: %s", charset); diff --git a/src/fs/Config.cxx b/src/fs/Config.cxx index 3d7e99b4a..63e64ef99 100644 --- a/src/fs/Config.cxx +++ b/src/fs/Config.cxx @@ -38,15 +38,15 @@ void ConfigureFS() { - const char *charset = NULL; + const char *charset = nullptr; - charset = config_get_string(CONF_FS_CHARSET, NULL); - if (charset == NULL) { + charset = config_get_string(CONF_FS_CHARSET, nullptr); + if (charset == nullptr) { #ifndef WIN32 const gchar **encodings; g_get_filename_charsets(&encodings); - if (encodings[0] != NULL && *encodings[0] != '\0') + if (encodings[0] != nullptr && *encodings[0] != '\0') charset = encodings[0]; #else /* Glib claims that file system encoding is always utf-8 |