Merge pull request #2529 from smcv/static-delta-error-unwind
libotutil: Avoid infinite recursion during error unwinding
This commit is contained in:
commit
2903ffac60
|
|
@ -830,7 +830,7 @@ static void
|
||||||
ot_variant_builder_info_free (OtVariantBuilderInfo *info)
|
ot_variant_builder_info_free (OtVariantBuilderInfo *info)
|
||||||
{
|
{
|
||||||
if (info->parent)
|
if (info->parent)
|
||||||
ot_variant_builder_info_free (info);
|
ot_variant_builder_info_free (info->parent);
|
||||||
|
|
||||||
g_variant_type_free (info->type);
|
g_variant_type_free (info->type);
|
||||||
g_array_unref (info->child_ends);
|
g_array_unref (info->child_ends);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue