From cb0cda2f8d3413c0e22e66813e67a604589f19e5 Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 Apr 2016 18:00:47 -0400 Subject: [PATCH] Missed channel deletion in ~ChannelInfo --- src/regchannel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/regchannel.cpp b/src/regchannel.cpp index ba7fad650..356ceb093 100644 --- a/src/regchannel.cpp +++ b/src/regchannel.cpp @@ -157,7 +157,7 @@ ChannelInfo::~ChannelInfo() if (this->c) { if (this->c && this->c->CheckDelete()) - delete this->c; + this->c->QueueForDeletion(); this->c = NULL; }