Fix Ubuntu compiler error from latest changes. (#1493)

* Fix Ubuntu compiler error from latest changes.

* Add PR #1493 to changelog.
master
Mooneer Salem 2026-09-15 13:01:02 -07:00 committed by GitHub
parent e56570a8f5
commit 6e975f0d31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -957,7 +957,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
* Fix potential equalizer bug that could introduce corrupted audio. (PR #1480)
* Fix uninitialized value read during waterfall plot render. (PR #1481)
* Match std::atomic memory ordering to what each atomic actually synchronises. (PR #1482)
* Remove use of mutexes in audio path during callsign decode. (PR #1486)
* Remove use of mutexes in audio path during callsign decode. (PR #1486, #1493)
* Tighten audio thread timings on macOS and Windows. (PR #1494)
2. Build system:
* Windows versions are now built with llvm-mingw 20260908 (PR #1489)

View File

@ -122,7 +122,7 @@ void FreeDVInterface::OnRadeTextRx_(rade_text_t, const char* txt_ptr, int, void*
char tmpBuf[RELIABLE_TEXT_FIFO_SIZE];
memset(tmpBuf, 0, RELIABLE_TEXT_FIFO_SIZE);
strncpy(tmpBuf, txt_ptr, RELIABLE_TEXT_FIFO_SIZE);
strncpy(tmpBuf, txt_ptr, RELIABLE_TEXT_FIFO_SIZE - 1);
obj->reliableTextFifo_.write(tmpBuf, RELIABLE_TEXT_FIFO_SIZE);
}