mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -05:00
virtual-input-device/native: Verify device cleanup in impl_state_free()
We free it in the task function, so it's already NULL when freeing the state struct. Change the redudant unref to a NULL check warning. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1688>
This commit is contained in:
parent
671bda2509
commit
9de36fed4d
@ -1033,7 +1033,7 @@ meta_virtual_input_device_native_constructed (GObject *object)
|
||||
static void
|
||||
impl_state_free (ImplState *impl_state)
|
||||
{
|
||||
g_clear_object (&impl_state->device);
|
||||
g_warn_if_fail (!impl_state->device);
|
||||
g_free (impl_state);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user