diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/connectionHTTP.c | 1 | ||||
-rw-r--r-- | server/menuHTTP.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/server/connectionHTTP.c b/server/connectionHTTP.c index ac4763b..e00083e 100644 --- a/server/connectionHTTP.c +++ b/server/connectionHTTP.c @@ -38,6 +38,7 @@ cConnectionHTTP::~cConnectionHTTP() { delete m_Streamer; delete m_RecPlayer; + delete m_MenuList; } bool cConnectionHTTP::CanAuthenticate(void) diff --git a/server/menuHTTP.h b/server/menuHTTP.h index e6141e0..2a396d4 100644 --- a/server/menuHTTP.h +++ b/server/menuHTTP.h @@ -18,6 +18,7 @@ class cItemIterator virtual const cString ItemRessource() const = 0; virtual const char* Alang(int i) const = 0; virtual const char* Dlang(int i) const = 0; + virtual ~cItemIterator() {}; }; class cRecordingsIterator: public cItemIterator |