From: Gonglei Date: Thu, 12 May 2016 09:57:08 +0000 (+0800) Subject: spice: fix coverity complains X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=28f4a7083dcca084243e313ab18fcdb20d60334e;p=qemu.git spice: fix coverity complains Remove the unnecessary NULL check. Signed-off-by: Gonglei Reviewed-by: Paolo Bonzini Message-id: 1463047028-123868-3-git-send-email-arei.gonglei@huawei.com Signed-off-by: Gerd Hoffmann --- diff --git a/ui/spice-display.c b/ui/spice-display.c index 2a77a545ae..0553c5e5b0 100644 --- a/ui/spice-display.c +++ b/ui/spice-display.c @@ -774,9 +774,7 @@ static void display_mouse_define(DisplayChangeListener *dcl, SimpleSpiceDisplay *ssd = container_of(dcl, SimpleSpiceDisplay, dcl); qemu_mutex_lock(&ssd->lock); - if (c) { - cursor_get(c); - } + cursor_get(c); cursor_put(ssd->cursor); ssd->cursor = c; ssd->hot_x = c->hot_x;