Jscott44 / RTEP5-the-raspberry-jam

Realtime digital guitar effects pedal designed for Raspberry PI, written in C++
MIT License
12 stars 0 forks source link

87 Program crashing when clearing multiple effects #93

Closed iamdario closed 5 months ago

iamdario commented 5 months ago

Based on Issue #87. When breaking down the issue logically, it could have been that we were deleting effects while they were being used, causing a segmentation fault and crashing the program. Now, all GUI callbacks wait until they can temporarily access the effects by use of polling to ensure they do not delete the effects while they are used. This seemed to have solved the issue as it has not crashed since.