1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 17:11:12 +02:00

Fix a memory leak

This branch of the function is never reached because of checks in
class EffectRepair, but anyway.
This commit is contained in:
Paul-Licameli
2015-04-09 19:09:33 -04:00
parent f80db283b5
commit a583fafbb7

View File

@@ -103,6 +103,7 @@ void InterpolateAudio(float *buffer, int len,
InterpolateAudio(buffer2, len, len-numBad, numBad);
for(i=0; i<len; i++)
buffer[len-1-i] = buffer2[i];
delete[] buffer2;
return;
}