diff --git a/types/wlr_tablet_pad.c b/types/wlr_tablet_pad.c index dbe35e16..07f9da10 100644 --- a/types/wlr_tablet_pad.c +++ b/types/wlr_tablet_pad.c @@ -13,11 +13,7 @@ void wlr_tablet_pad_init(struct wlr_tablet_pad *pad, } void wlr_tablet_pad_destroy(struct wlr_tablet_pad *pad) { - if (!pad) { - return; - } - - if (pad->impl && pad->impl->destroy) { + if (pad && pad->impl && pad->impl->destroy) { pad->impl->destroy(pad); } else { free(pad);