mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 08:30:42 -05:00
cally: fix state set leak
cally_actor_action_do_action leaks a state set object in the case where the actor is defunct, insensitive, or hidden. This commit plugs the leak. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1225
This commit is contained in:
parent
d823a54b5d
commit
b856008914
@ -768,7 +768,7 @@ cally_actor_action_do_action (AtkAction *action,
|
||||
gint index)
|
||||
{
|
||||
CallyActor *cally_actor = NULL;
|
||||
AtkStateSet *set = NULL;
|
||||
g_autoptr (AtkStateSet) set = NULL;
|
||||
CallyActorPrivate *priv = NULL;
|
||||
CallyActorActionInfo *info = NULL;
|
||||
|
||||
@ -784,8 +784,6 @@ cally_actor_action_do_action (AtkAction *action,
|
||||
!atk_state_set_contains_state (set, ATK_STATE_SHOWING))
|
||||
return FALSE;
|
||||
|
||||
g_object_unref (set);
|
||||
|
||||
info = _cally_actor_get_action_info (cally_actor, index);
|
||||
|
||||
if (info == NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user