mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-14 15:20:29 +02:00
bug 2573 High / Low Pass filters limited to ~94 mins stereo at 44100 Hz
MULTICHAN-EXPAND was holding onto samples when checking function arguments. Ensure that samples are released after check.
This commit is contained in:
parent
e7c010c8a4
commit
daf2b3cd02
@ -2241,7 +2241,8 @@ loop
|
||||
((and (eq nonsnd 'NULL) (null chan)))
|
||||
((and (eq nonsnd 'INT-OR-NULL)
|
||||
(or (integerp chan) (null chan))))
|
||||
(t (ny:error src index typ a t))))
|
||||
(t (ny:error src index typ a t)))
|
||||
(setf chan nil))
|
||||
(setf prev a)
|
||||
(setf len newlen))
|
||||
((and (eq nonsnd 'NUMBER) (numberp a)))
|
||||
|
Loading…
x
Reference in New Issue
Block a user