ref: d33f4b1b5165306832c88ce2fd9a327f439d0375
parent: cd276d94be13523c97054f3b7e4b438562ea9292
author: Clownacy <[email protected]>
date: Tue Jan 29 02:36:28 EST 2019
Use FIX_BUGS to fix that one delete[] bug in Organya Fixes #31
--- a/src/Organya.cpp
+++ b/src/Organya.cpp
@@ -78,7 +78,11 @@
{
if(info.tdata[i].note_p != NULL)
{
+#ifdef FIX_BUGS
+ delete[] info.tdata[i].note_p;
+#else
delete info.tdata[i].note_p; // should be delete[]
+#endif
info.tdata[i].note_p = NULL;
}
}