mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-14 19:55:12 +01:00
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:
commit
4ea412c276
@ -127,7 +127,10 @@ test_unicode_normalize (void)
|
|||||||
|
|
||||||
columns = g_strsplit (buffer->str, ";", -1);
|
columns = g_strsplit (buffer->str, ";", -1);
|
||||||
if (!columns[0])
|
if (!columns[0])
|
||||||
goto next;
|
{
|
||||||
|
g_strfreev (columns);
|
||||||
|
goto next;
|
||||||
|
}
|
||||||
|
|
||||||
process_one (line, columns);
|
process_one (line, columns);
|
||||||
g_strfreev (columns);
|
g_strfreev (columns);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user