1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-31 07:59:27 +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:
SteveDaulton 2020-10-26 17:47:02 +00:00
parent e7c010c8a4
commit daf2b3cd02

View File

@ -2241,7 +2241,8 @@ loop
((and (eq nonsnd 'NULL) (null chan))) ((and (eq nonsnd 'NULL) (null chan)))
((and (eq nonsnd 'INT-OR-NULL) ((and (eq nonsnd 'INT-OR-NULL)
(or (integerp chan) (null chan)))) (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 prev a)
(setf len newlen)) (setf len newlen))
((and (eq nonsnd 'NUMBER) (numberp a))) ((and (eq nonsnd 'NUMBER) (numberp a)))