mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-19 09:01:15 +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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user