mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-19 14:17:41 +02:00
bug 2017 'offset' was used uninitialised
This commit is contained in:
parent
26abe0255d
commit
4f964c359b
@ -275,7 +275,8 @@ bool EffectNormalize::Process()
|
|||||||
|
|
||||||
// Analysis loop over channels collects offsets and extent
|
// Analysis loop over channels collects offsets and extent
|
||||||
for (auto channel : range) {
|
for (auto channel : range) {
|
||||||
float offset, extent2;
|
float offset = 0;
|
||||||
|
float extent2 = 0;
|
||||||
bGoodResult =
|
bGoodResult =
|
||||||
AnalyseTrack( channel, msg, progress, offset, extent2 );
|
AnalyseTrack( channel, msg, progress, offset, extent2 );
|
||||||
if ( ! bGoodResult )
|
if ( ! bGoodResult )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user