andysworkshop / stm32plus

The C++ library for the STM32 F0, F100, F103, F107 and F4 microcontrollers
http://www.andybrown.me.uk
Other
745 stars 224 forks source link

Fix wrong delete operator for _buffer #154

Closed hellow554 closed 8 years ago

hellow554 commented 8 years ago

_buffer was allocated with new[ ], so it has to be deleted with delete[ ]

andysworkshop commented 8 years ago

Thank you :)