From: cedric Date: Fri, 24 Feb 2012 11:21:12 +0000 (+0000) Subject: ecore: binbuf doesn't accept NULL (that's what EINA_ARG_NONNULL tell us...) X-Git-Tag: accepted/2.0/20130306.224007~69^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=885ab9d02daaa38ed88af020cb777954f2fa2a2a;p=profile%2Fivi%2Fecore.git ecore: binbuf doesn't accept NULL (that's what EINA_ARG_NONNULL tell us...) git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@68403 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore_con/ecore_con.c b/src/lib/ecore_con/ecore_con.c index 2213409..99c4707 100644 --- a/src/lib/ecore_con/ecore_con.c +++ b/src/lib/ecore_con/ecore_con.c @@ -1323,7 +1323,7 @@ _ecore_con_client_free(Ecore_Con_Client *cl) if (cl->event_count) return; ECORE_MAGIC_SET(cl, ECORE_MAGIC_NONE); - eina_binbuf_free(cl->buf); + if (cl->buf) eina_binbuf_free(cl->buf); if (cl->host_server->type & ECORE_CON_SSL) ecore_con_ssl_client_shutdown(cl);