cwAudioBuf.cpp : Fixed bug where main object was memory was not released in destroy().

This commit is contained in:
kevin 2021-01-20 13:05:33 -05:00
parent a82c423725
commit 29945bd3b4

View File

@ -279,6 +279,8 @@ cw::rc_t cw::audio::buf::destroy( handle_t& hRef )
p->devCnt = 0;
mem::release( p );
return kOkRC;
}