app: fix parsing of GUM cross-property references

This commit is contained in:
Ell 2020-06-01 22:39:11 +03:00
parent ae801871e5
commit 8139836d5d
1 changed files with 9 additions and 0 deletions

View File

@ -926,6 +926,15 @@ gimp_prop_eval_parse_reference (GObject *config,
g_free (property_name);
*ref_key = g_strdup (*t);
gimp_prop_eval_read_token (expr, t, error);
if (*error)
{
g_free (*ref_key);
return FALSE;
}
}
return TRUE;