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