Skip to content

Fixed an issue where memory were allocated dynamically but never deleted.

Ogers Ruda requested to merge dynamic_allocation_issue_fix into master

To solve this we are using forward_list to first store the aov_names. This way we are certain that the strings will not move around and that the buffers won't change address, and we won't need manual allocation too.

Merge request reports