Ecore_List -> Eina_List transition broke _ecore_xcb_cookie_cache: due to leftover condition no cookies were added to cache at all, making havoc and despair.
This patch removes offending check. Signed-off-by: Mikhail Gusarov <[email protected]> --- src/lib/ecore_x/xcb/ecore_xcb_reply.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/src/lib/ecore_x/xcb/ecore_xcb_reply.c b/src/lib/ecore_x/xcb/ecore_xcb_reply.c index 13402b6..1c94823 100644 --- a/src/lib/ecore_x/xcb/ecore_xcb_reply.c +++ b/src/lib/ecore_x/xcb/ecore_xcb_reply.c @@ -56,9 +56,6 @@ _ecore_xcb_cookie_cache (unsigned int cookie) { Ecore_Xcb_Data *data; - if (!_ecore_xcb_cookies) - return; - data = (Ecore_Xcb_Data *)malloc(sizeof(Ecore_Xcb_Data)); if (!data) return; -- 1.6.3.3 ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
