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:
parent
48a1538b37
commit
df3c2a7b2f
@ -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 ) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user