BridgesUNCC / bridges-cxx

C++ client library for Bridges
http://bridgesuncc.github.io
2 stars 5 forks source link

memory allocation model in AudioClip #112

Closed esaule closed 4 years ago

esaule commented 4 years ago

Memory is mismanaged in AudioClip. Running the answer of assignment 33 triggers a double free error. @KyleReto reported it. @esaule will look into it.

In general, we need to move to more modern C++ to remove these errors.

Also, we may want to use valgrind in our automatic test to detect these kinds of issues.

esaule commented 4 years ago

done