mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
tests: audioconvert: Fix memory leak in failure path
Don't set a bad example by leaking things, even if calling g_error() will make the process abort. https://bugzilla.gnome.org/show_bug.cgi?id=783418
This commit is contained in:
parent
d36a22553b
commit
4876fe04f5
1 changed files with 3 additions and 2 deletions
|
@ -467,8 +467,9 @@ verify_convert (const gchar * which, void *in, int inlength,
|
|||
/* positions for 1 and 2 channels are implicit if not provided */
|
||||
if (out_chans > 2 && gst_structure_has_field (in_s, "channel-positions")) {
|
||||
if (!gst_structure_has_field (out_s, "channel-positions")) {
|
||||
g_error ("Channel layout got lost somewhere:\n\nIns : %s\nOuts: %s\n",
|
||||
gst_structure_to_string (in_s), gst_structure_to_string (out_s));
|
||||
gst_printerrln ("In : %" GST_PTR_FORMAT, in_s);
|
||||
gst_printerrln ("Out : %" GST_PTR_FORMAT, out_s);
|
||||
g_error ("Channel layout got lost somewhere\n");
|
||||
}
|
||||
}
|
||||
gst_caps_unref (ccaps);
|
||||
|
|
Loading…
Reference in a new issue