Uninitialized variable.
authorFrantišek Dvořák <valtri@civ.zcu.cz>
Thu, 1 Mar 2012 16:35:56 +0000 (16:35 +0000)
committerFrantišek Dvořák <valtri@civ.zcu.cz>
Thu, 1 Mar 2012 16:35:56 +0000 (16:35 +0000)
org.glite.lb.logger/src/queue_mgr.c

index 12e7cc5..48f6afc 100644 (file)
@@ -110,6 +110,9 @@ queue_list_add(struct queue_list **ql, const char *dest, struct event_queue *eq)
   }
   el->queue = eq;
   el->next = *ql;
+#if defined(IL_NOTIFICATIONS)
+  el->expires = 0;
+#endif
   *ql = el;
   return 0;
 }