From: Changyeon Lee Date: Wed, 17 Jun 2020 10:54:27 +0000 (+0900) Subject: e_pixmap: fix wrong null checking X-Git-Tag: submit/tizen/20200623.022629~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F90%2F236490%2F1;p=platform%2Fupstream%2Fenlightenment.git e_pixmap: fix wrong null checking Change-Id: If2ef0be06d06534fa4b722803a601284f19d47bc --- diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index eac699d5f3..0b43419acd 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -1068,7 +1068,7 @@ _e_pixmap_buffer_clear(E_Pixmap *cp, Eina_Bool only_free) cqueue = wayland_tbm_server_client_queue_get(e_comp_wl->tbm.server, cp->client->comp_data->wl_surface); - if (cqueue) return; + if (!cqueue) return; if (only_free) wayland_tbm_server_client_queue_free_flush(cqueue);