builder: Plug a small memory leak

We were forgetting to free expression info
objects in one place.
This commit is contained in:
Matthias Clasen 2021-03-27 18:40:12 -04:00
parent 0c6da97147
commit 4cf69fbc5e

View File

@ -2007,6 +2007,7 @@ end_element (GtkBuildableParseContext *context,
PropertyInfo *prop_info = (PropertyInfo *) parent_info;
prop_info->value = expression_info_construct (data->builder, expression_info, error);
free_expression_info (expression_info);
}
else if (parent_info->tag_type == TAG_EXPRESSION)
{