Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
forgot to add free() to the previous malloc change
  • Loading branch information
Tetsuo55 committed Jun 22, 2013
1 parent 02351b7 commit 0c9c3c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Externals/soundtouch/FIRFilter.cpp
Expand Up @@ -217,6 +217,7 @@ uint FIRFilter::evaluateFilterMulti(SAMPLETYPE *dest, const SAMPLETYPE *src, uin
sum[c] = 0;
}
}
free(sum);
return numSamples - length;
}

Expand Down
1 change: 1 addition & 0 deletions Externals/soundtouch/SoundTouch.cpp
Expand Up @@ -383,6 +383,7 @@ void SoundTouch::flush()
pTDStretch->clearInput();
// yet leave the 'tempoChanger' output intouched as that's where the
// flushed samples are!
free(buff);
}


Expand Down

0 comments on commit 0c9c3c9

Please sign in to comment.