tests:gstinfo: Fix string memory leak

info_fourcc test leaks string.

https://bugzilla.gnome.org/show_bug.cgi?id=761071
This commit is contained in:
Vineeth TM 2016-01-25 12:09:54 +09:00 committed by Thiago Santos
parent afaeec665a
commit ca97a9882f

View file

@ -417,6 +417,7 @@ GST_START_TEST (info_fourcc)
cmp = ".bcd";
res = g_strdup_printf ("%" GST_FOURCC_FORMAT, GST_FOURCC_ARGS (0x646362a9));
fail_unless_equals_string (res, cmp);
g_free (res);
}
GST_END_TEST;