mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Add some argument checks to filename conversion functions
This commit is contained in:
parent
c9f883f133
commit
f966a0af9a
@ -1469,6 +1469,8 @@ g_filename_to_utf8 (const gchar *opsysstring,
|
||||
{
|
||||
const gchar *charset;
|
||||
|
||||
g_return_val_if_fail (opsysstring != NULL, NULL);
|
||||
|
||||
if (get_filename_charset (&charset))
|
||||
return strdup_len (opsysstring, len, bytes_read, bytes_written, error);
|
||||
else
|
||||
@ -1494,6 +1496,8 @@ g_filename_to_utf8 (const gchar *opsysstring,
|
||||
{
|
||||
const gchar *charset;
|
||||
|
||||
g_return_val_if_fail (opsysstring != NULL, NULL);
|
||||
|
||||
if (g_get_charset (&charset))
|
||||
return strdup_len (opsysstring, len, bytes_read, bytes_written, error);
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user