From 7d0bf9a1a77420f09389bda1acafcd4bd42e82f1 Mon Sep 17 00:00:00 2001 From: nyorain Date: Tue, 15 Aug 2017 12:16:23 +0200 Subject: [PATCH] Simplify tablet pad destruction --- types/wlr_tablet_pad.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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);