You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In function readCard is a possible memory leak, caused by removing of a modifier card.
When a modifier card is removed, only the activeModifier is set to null, but the memory is not freed.
In function readCard is a possible memory leak, caused by removing of a modifier card.
When a modifier card is removed, only the activeModifier is set to null, but the memory is not freed.
TonUINO/Tonuino.ino
Lines 1635 to 1642 in 73b5681
Should be fixed by using:
delete activeModifier;
Or the implementation of Modifier class could be changed to contain a destructor which gets called.
The text was updated successfully, but these errors were encountered: