Clean up cppcheck warnings about handling of allocated memory in SysEx class

This commit is contained in:
Nathan Stewart 2016-10-07 12:38:00 -04:00 committed by Robin Gareus
parent 712440a48c
commit 59cc0a11ca
2 changed files with 3 additions and 1 deletions

View File

@ -45,6 +45,8 @@ SysEx::SysEx (
SysEx::~SysEx()
{
delete _flag;
_flag = 0;
}
bool

View File

@ -46,7 +46,7 @@ public:
private:
bool event_handler (GdkEvent* ev);
SysEx(const SysEx& rhs){}
ArdourCanvas::Flag* _flag;
};