add missing initialization
Stefan Schuermans

Stefan Schuermans commited on 2011-12-14 23:02:04
Showing 1 changed files, with 2 additions and 1 deletions.

... ...
@@ -38,7 +38,8 @@ Output::Output(CallMgr &callMgr, StreamMgr &streamMgr,
38 38
   m_fileInStream(dirBase.getFile("instream"), streamMgr),
39 39
   m_fileProtocol(dirBase.getFile("protocol")),
40 40
   m_fileDevice(dirBase.getFile("device")),
41
-  m_fileSerCfg(dirBase.getFile("ser_cfg"))
41
+  m_fileSerCfg(dirBase.getFile("ser_cfg")),
42
+  m_pDevice(NULL)
42 43
 {
43 44
   // set up
44 45
   m_fileInStream.setStreamRecv(this);
45 46