validate: report: fix GStrv leak

We borrow the content of the GStrv but were leaking the array itself.
This commit is contained in:
Guillaume Desmottes 2015-03-20 11:23:29 +01:00
parent cb8348c7b1
commit 7373286968

View file

@ -125,6 +125,7 @@ gst_validate_issue_new (GstValidateIssueId issue_id, const gchar * summary,
issue->area = area_name[0];
issue->name = area_name[1];
g_free (area_name);
return issue;
}