Skip to content

Commit

Permalink
EncoderFdkAac: Fix memory leak in destructor
Browse files Browse the repository at this point in the history
Will also be fixed by mixxxdj#4341.
  • Loading branch information
uklotzde authored and JaviVilarroig committed Oct 26, 2021
1 parent 668e070 commit 284819b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/encoder/encoderfdkaac.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ EncoderFdkAac::~EncoderFdkAac() {
}

delete[] m_pAacDataBuffer;
delete m_pFifoChunkBuffer;
delete[] m_pFifoChunkBuffer;
delete m_pInputFifo;
}

Expand Down

0 comments on commit 284819b

Please sign in to comment.