Skip to content

Commit

Permalink
Fix memory leak on frame_sync_impl destruction
Browse files Browse the repository at this point in the history
  • Loading branch information
mskvortsov committed May 3, 2024
1 parent ce8a65f commit d9eab58
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/frame_sync_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ namespace gr
*/
frame_sync_impl::~frame_sync_impl()
{
delete[] cx_out;
delete[] cx_in;
kiss_fft_free(m_kiss_fft_cfg);
}
int frame_sync_impl::my_roundf(float number)
Expand Down

0 comments on commit d9eab58

Please sign in to comment.