1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 17:49:45 +02:00

Don't mutate uninitialized Maybe

This commit is contained in:
Paul Licameli 2018-10-23 06:00:40 -04:00
parent 48a1538b37
commit df3c2a7b2f

View File

@ -783,7 +783,8 @@ bool NyquistEffect::Process()
for (;
bOnePassTool || pRange->first != pRange->second;
++pRange->first) {
(void) (!pRange || (++pRange->first, true))
) {
mCurTrack[0] = pRange ? *pRange->first : nullptr;
mCurNumChannels = 1;
if ( (mT1 >= mT0) || bOnePassTool ) {