Merge branch 'unicode-normalise-leak' into 'main'

tests: Fix a minor leak in the unicode-normalize test

See merge request GNOME/glib!2606
This commit is contained in:
Sebastian Dröge
2022-04-29 08:02:56 +00:00

View File

@@ -127,7 +127,10 @@ test_unicode_normalize (void)
columns = g_strsplit (buffer->str, ";", -1);
if (!columns[0])
goto next;
{
g_strfreev (columns);
goto next;
}
process_one (line, columns);
g_strfreev (columns);