1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 08:39:46 +02:00

Fix a bogus delete in AudioUnits

This commit is contained in:
lllucius@gmail.com 2014-12-07 01:43:03 +00:00
parent f18f4857e2
commit 581b836c18

View File

@ -1345,7 +1345,7 @@ bool AudioUnitEffect::ProcessFinalize()
if (mOutputList)
{
delete [] mOutputList;
mInputList = NULL;
mOutputList = NULL;
}
if (mInputList)