mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
Merge branch 'minor-coverity-fixes' into 'master'
Minor Coverity fixes See merge request GNOME/glib!1619
This commit is contained in:
commit
27d857bfa1
@ -1530,7 +1530,10 @@ void
|
||||
|
||||
test_prgname = g_path_get_basename (g_get_prgname ());
|
||||
if (*test_prgname == '\0')
|
||||
test_prgname = g_strdup ("unknown");
|
||||
{
|
||||
g_free (test_prgname);
|
||||
test_prgname = g_strdup ("unknown");
|
||||
}
|
||||
tmpl = g_strdup_printf ("test_%s_XXXXXX", test_prgname);
|
||||
g_free (test_prgname);
|
||||
|
||||
|
@ -350,6 +350,7 @@ uri_decoder (gchar **out,
|
||||
*d = '\0';
|
||||
|
||||
len = d - decoded;
|
||||
g_assert (len >= 0);
|
||||
|
||||
if (!(flags & G_URI_FLAGS_ENCODED) &&
|
||||
!g_utf8_validate (decoded, len, &invalid))
|
||||
|
Loading…
Reference in New Issue
Block a user