summaryrefslogtreecommitdiff
path: root/server/connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/connection.c')
-rw-r--r--server/connection.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/connection.c b/server/connection.c
index e0e7f88..1cd1d21 100644
--- a/server/connection.c
+++ b/server/connection.c
@@ -28,6 +28,7 @@ cServerConnection::cServerConnection(const char *Protocol, int Type):
m_ReadBytes(0),
m_WriteBytes(0),
m_WriteIndex(0),
+ m_Streamer(NULL),
m_OccupiedDev(NULL),
m_SwitchTo(NULL)
{
@@ -35,6 +36,7 @@ cServerConnection::cServerConnection(const char *Protocol, int Type):
cServerConnection::~cServerConnection()
{
+ delete(m_Streamer);
}
const cChannel* cServerConnection::ChannelFromString(const char *String, int *Apid, int *Dpid) {