fix memory corruption any time a SysEx display object is deleted

This commit is contained in:
Paul Davis 2017-01-03 22:09:47 +00:00
parent 0f4d61ab30
commit 5fac2c66c9

View File

@ -45,7 +45,9 @@ SysEx::SysEx (
SysEx::~SysEx()
{
delete _flag;
/* do not delete flag because it was added to a parent/container which
will delete it.
*/
_flag = 0;
}