gui/motorcontrol.cpp: fix memleak - delete sig/snr scale in dtor

Origin commit data
------------------
Branch: ni/coolstream
Commit: c5c3b0109a
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-05-06 (Sun, 06 May 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2012-05-06 15:50:41 +04:00
parent 65d1d629ac
commit 4ae2229a1f

View File

@@ -72,8 +72,11 @@ CMotorControl::CMotorControl(int tnum)
CMotorControl::~CMotorControl()
{
printf("CMotorControl::~CMotorControl\n");
printf("CMotorControl::~CMotorControl\n");
delete sigscale;
delete snrscale;
}
void CMotorControl::Init(void)
{
frameBuffer = CFrameBuffer::getInstance();