add forgotten call to init and clear
Stefan Schuermans

Stefan Schuermans commited on 2011-12-11 00:37:24
Showing 1 changed files, with 2 additions and 0 deletions.

... ...
@@ -35,11 +35,13 @@ Priority::Priority(CallMgr &callMgr, StreamMgr &streamMgr,
35 35
   m_inListTracker(*this, dirBase.getSubdir("inputs")),
36 36
   m_itCurIn(m_inListTracker.m_list.rend())
37 37
 {
38
+  m_inListTracker.init();
38 39
 }
39 40
 
40 41
 /// virtual destructor
41 42
 Priority::~Priority()
42 43
 {
44
+  m_inListTracker.clear();
43 45
 }
44 46
 
45 47
 /// check for update of configuration
46 48