X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttv%2Fmodules%2Fgui%2Fhistogram%2Fhistodrawitem.c;h=73bd3edfbca68b1a61852655f0ec4b716066dc12;hb=8f31828398b8a4fcdb679324291132f4f0e3dce6;hp=aafa515d48849a87a08c2fb87a2a953bbeb1929b;hpb=a76ec682084c069bc4608af1b11b35cbaa7acc28;p=lttv.git diff --git a/lttv/modules/gui/histogram/histodrawitem.c b/lttv/modules/gui/histogram/histodrawitem.c index aafa515d..73bd3edf 100644 --- a/lttv/modules/gui/histogram/histodrawitem.c +++ b/lttv/modules/gui/histogram/histodrawitem.c @@ -213,6 +213,7 @@ gboolean histo_draw_icon( void *hook_data, void *call_data) { histo_PropertiesIcon *properties = (histo_PropertiesIcon*)hook_data; histo_DrawContext *draw_context = (histo_DrawContext*)call_data; + gboolean retval; LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes()); LttvAttributeValue value; @@ -221,8 +222,9 @@ gboolean histo_draw_icon( void *hook_data, void *call_data) strcat(icon_name, properties->icon_name); - g_assert(lttv_iattribute_find_by_path(attributes, icon_name, - LTTV_POINTER, &value)); + retval= lttv_iattribute_find_by_path(attributes, icon_name, + LTTV_POINTER, &value); + g_assert(retval); if(unlikely(*(value.v_pointer) == NULL)) { *(value.v_pointer) = icon_info = g_new(histo_IconStruct,1);