[fix](trx-ft8): correct result buffer size

Co-authored-by: Codex <codex@openai.com>
Signed-off-by: Stanislaw Grams <stanislawgrams@gmail.com>
This commit is contained in:
2026-02-09 21:41:53 +01:00
parent 995ddd7306
commit 9f2306aa71
+1 -1
View File
@@ -109,7 +109,7 @@ impl Ft8Decoder {
return Vec::new(); return Vec::new();
} }
let mut raw = vec![Ft8DecodeResultRaw { let mut raw = vec![Ft8DecodeResultRaw {
text: [0; 64], text: [0; FTX_MAX_MESSAGE_LENGTH],
snr_db: 0.0, snr_db: 0.0,
dt_s: 0.0, dt_s: 0.0,
freq_hz: 0.0, freq_hz: 0.0,