mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-21 12:49:10 +00:00
Plug some simple leaks detected during startup
This commit is contained in:
@ -279,6 +279,13 @@ plNetLinkingMgr::plNetLinkingMgr()
|
||||
{
|
||||
}
|
||||
|
||||
plNetLinkingMgr::~plNetLinkingMgr()
|
||||
{
|
||||
std::for_each(s_opqueue.begin(), s_opqueue.end(),
|
||||
[](NlmOp * op) { delete op; }
|
||||
);
|
||||
}
|
||||
|
||||
plNetLinkingMgr * plNetLinkingMgr::GetInstance()
|
||||
{
|
||||
static plNetLinkingMgr Instance;
|
||||
|
Reference in New Issue
Block a user