Fix calloc-free mismatch
authorHirotoshi YOSHITAKA <tyounan.moti@gmail.com>
Mon, 6 Oct 2014 14:54:11 +0000 (23:54 +0900)
committerHirotoshi YOSHITAKA <tyounan.moti@gmail.com>
Mon, 6 Oct 2014 14:54:11 +0000 (23:54 +0900)
commit17188fb2b1f05d8bdee44fc9d5bc339da3e78912
treef43ad83110d5e966e91b774b660fa9f2507ad797
parente2f63bd30514c7a8dc3439a681a87681ef0ad6d3
Fix calloc-free mismatch

Use free() for allocated memory by calloc (not delete).
Deleting calloc-ed memory will become problem in the environment which
overrides global "operator delete" like some game engine.
RtAudio.cpp