mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-14 00:06:24 +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 ());
|
test_prgname = g_path_get_basename (g_get_prgname ());
|
||||||
if (*test_prgname == '\0')
|
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);
|
tmpl = g_strdup_printf ("test_%s_XXXXXX", test_prgname);
|
||||||
g_free (test_prgname);
|
g_free (test_prgname);
|
||||||
|
|
||||||
|
@ -350,6 +350,7 @@ uri_decoder (gchar **out,
|
|||||||
*d = '\0';
|
*d = '\0';
|
||||||
|
|
||||||
len = d - decoded;
|
len = d - decoded;
|
||||||
|
g_assert (len >= 0);
|
||||||
|
|
||||||
if (!(flags & G_URI_FLAGS_ENCODED) &&
|
if (!(flags & G_URI_FLAGS_ENCODED) &&
|
||||||
!g_utf8_validate (decoded, len, &invalid))
|
!g_utf8_validate (decoded, len, &invalid))
|
||||||
|
Loading…
Reference in New Issue
Block a user