Commit b3b66ecf authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Jean-Baptiste Kempf

dash: MPDManager: Fixing memory leak

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 27459888
......@@ -48,7 +48,8 @@ DASHManager::DASHManager (HTTPConnectionManager *conManager, Node *node, IAda
}
DASHManager::~DASHManager ()
{
delete(this->adaptationLogic);
delete this->adaptationLogic;
delete this->mpdManager;
}
int DASHManager::read (void *p_buffer, size_t len)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment