From: Sung-jae Park Date: Thu, 4 Jul 2013 02:48:47 +0000 (+0900) Subject: Validate the pixmap for release_XX_pixmap X-Git-Tag: accepted/tizen/20131022.083701^2~14 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fframework%2Fweb%2Flivebox-viewer.git;a=commitdiff_plain;h=6095c9d8fe559456871f877ce09b054ce61f5789 Validate the pixmap for release_XX_pixmap Change-Id: I95559f72f21317757261de7e8394157bc16f98e6 --- diff --git a/src/livebox.c b/src/livebox.c index f96ae44..f5360e5 100644 --- a/src/livebox.c +++ b/src/livebox.c @@ -1889,8 +1889,8 @@ EAPI int livebox_release_lb_pixmap(struct livebox *handler, int pixmap) { struct packet *packet; - if (!handler) { - ErrPrint("Handler is NIL\n"); + if (!handler || pixmap == 0) { + ErrPrint("Handler is NIL [%d]\n", pixmap); return LB_STATUS_ERROR_INVALID; } @@ -2020,8 +2020,8 @@ EAPI int livebox_release_pd_pixmap(struct livebox *handler, int pixmap) { struct packet *packet; - if (!handler) { - ErrPrint("Handler is NIL\n"); + if (!handler || pixmap == 0) { + ErrPrint("Handler is NIL [%d]\n", pixmap); return LB_STATUS_ERROR_INVALID; }