From 722f8110f3091cf622784f73545c1462792f54bc Mon Sep 17 00:00:00 2001 From: c vw Date: Tue, 16 Nov 2021 09:47:44 +0100 Subject: [PATCH] create_transmitter: do not leave tx->alc uninitialized. --- transmitter.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/transmitter.c b/transmitter.c index 8fd8319..163b82a 100644 --- a/transmitter.c +++ b/transmitter.c @@ -893,6 +893,8 @@ fprintf(stderr,"create_transmitter: id=%d buffer_size=%d mic_sample_rate=%d mic_ tx->swr_protection = FALSE; tx->swr_alarm=3.0; // default value for SWR protection + tx->alc=0.0; + transmitter_restore_state(tx); -- 2.45.2