1
0
Fork 0

clutter/actor: Avoid double-checking on NULL during free

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4071>
This commit is contained in:
Marco Trevisan (Treviño) 2024-10-07 11:50:35 +02:00 committed by Marge Bot
parent 009ca767aa
commit 57fb071499

View file

@ -4136,8 +4136,7 @@ _clutter_actor_get_transform_info_or_defaults (ClutterActor *self)
static void
clutter_transform_info_free (gpointer data)
{
if (data != NULL)
g_free (data);
g_free (data);
}
/*< private >
@ -15471,8 +15470,7 @@ static const ClutterLayoutInfo default_layout_info = {
static void
layout_info_free (gpointer data)
{
if (G_LIKELY (data != NULL))
g_free (data);
g_free (data);
}
/*< private >