fix unitialized usages of result
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 11 Mar 2008 01:36:31 +0000 (01:36 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 11 Mar 2008 01:36:31 +0000 (01:36 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@2825 04897980-b3bd-0310-b5e0-8ef037075253

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.02497 seconds and 4 git commands to generate.