mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-02-05 01:55:27 +00:00
The HLSLMacro struct is manually malloc'd, not using new/delete, so the std::string destructor is never called on the instance stored in the class. Fixed by using a char* allocated by HLSLTree, which will then properly take care of deleting it after parsing is complete.