fix unitialized usages of result
[lttv.git] / ltt / branches / poly / lttv / modules / gui / lttvwindow / lttvwindow / lttvwindowtraces.c
index 617f18cb0db8f42afc870b4755fbe9156202bf33..c5bd1935e48382ef43e126e71d1a20690f20f776 100644 (file)
@@ -344,7 +344,7 @@ __EXPORT void lttvwindowtraces_background_request_queue
   GSList **slist;
   gboolean result;
 
-  lttv_iattribute_find(LTTV_IATTRIBUTE(attribute),
+  result = lttv_iattribute_find(LTTV_IATTRIBUTE(attribute),
                                 LTTV_REQUESTS_QUEUE,
                                 LTTV_POINTER,
                                 &value);
@@ -426,7 +426,7 @@ void lttvwindowtraces_background_request_remove
   GSList **slist;
   gboolean result;
 
-  lttv_iattribute_find(LTTV_IATTRIBUTE(attribute),
+  result = lttv_iattribute_find(LTTV_IATTRIBUTE(attribute),
                                 LTTV_REQUESTS_QUEUE,
                                 LTTV_POINTER,
                                 &value);
This page took 0.022441 seconds and 4 git commands to generate.