fix incorrect NULL check

This commit is contained in:
cnt0 2018-09-02 12:56:34 +05:00 committed by emersion
parent 95d05acda5
commit 6946134883
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ static void get_tablet_seat(struct wl_client *wl_client, struct wl_resource *res
struct wlr_tablet_seat_client_v2 *seat_client = struct wlr_tablet_seat_client_v2 *seat_client =
calloc(1, sizeof(struct wlr_tablet_seat_client_v2)); calloc(1, sizeof(struct wlr_tablet_seat_client_v2));
if (tablet_seat == NULL) { if (seat_client == NULL) {
wl_client_post_no_memory(wl_client); wl_client_post_no_memory(wl_client);
return; return;
} }