From cc22bd28191476fac6285d854abab8b9cc875af3 Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Wed, 26 Apr 2023 13:35:18 -0500 Subject: [PATCH 1/2] Protect against out-of-bounds array index. Thanks N2BP. --- lib/wsprd/wsprd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wsprd/wsprd.c b/lib/wsprd/wsprd.c index 8d8622761..3fde45d75 100644 --- a/lib/wsprd/wsprd.c +++ b/lib/wsprd/wsprd.c @@ -1165,7 +1165,7 @@ int main(int argc, char *argv[]) for (k=0; k<162; k++) { //Sum over symbols ifd=ifr+((float)k-81.0)/81.0*( (float)idrift )/(2.0*df); kindex=k0+2*k; - if( kindex < nffts ) { + if( kindex >= 0 && kindex < nffts ) { p0=ps[ifd-3][kindex]; p1=ps[ifd-1][kindex]; p2=ps[ifd+1][kindex]; From a7b489f3738ad89071c9ced435eee0eda9b1f2f2 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Thu, 27 Apr 2023 17:35:25 +0200 Subject: [PATCH 2/2] Update hyperlinks to our new wsjt group. --- doc/common/links.adoc | 6 +++--- doc/user_guide/en/support.adoc | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/common/links.adoc b/doc/common/links.adoc index 18ed1e6b3..fcbff8b3e 100644 --- a/doc/common/links.adoc +++ b/doc/common/links.adoc @@ -97,8 +97,8 @@ d). Edit lines as needed. Keeping them in alphabetic order help see dupes. :win32_openssl: https://slproweb.com/download/Win32OpenSSL_Light-1_1_1s.msi[Win32 OpenSSL Light Package] :win64_openssl: https://slproweb.com/download/Win64OpenSSL_Light-1_1_1s.msi[Win64 OpenSSL Light Package] :writelog: https://writelog.com/[Writelog] -:wsjtx_group: https://groups.io/g/WSJTX[WSJTX Group] -:wsjtx_group2: https://groups.io/g/WSJTX[join the group] +:wsjtx_group: https://groups.io/g/wsjtgroup[WSJT GROUP Forum] +:wsjtx_group2: https://groups.io/g/wsjtgroup[join the group] :wsjtx: https://sourceforge.net/projects/wsjt/files/wsjtx-{VERSION}/wsjtx.html[WSJT-X] :wspr0_guide: https://wsjt.sourceforge.io/WSPR0_Instructions.TXT[WSPR0 Guide] :wspr: https://sourceforge.net/projects/wsjt/files/wsjtx-{VERSION}/wspr.html[WSPR Home Page] @@ -134,7 +134,7 @@ d). Edit lines as needed. Keeping them in alphabetic order help see dupes. :dev_mail_svn: https://sourceforge.net/auth/subscriptions/[WSJT SVN Archives] :devmail: mailto:wsjt-devel@lists.sourceforge.net[wsjt-devel@lists.sourceforge.net] :devmail1: mailto:wsjt-devel@lists.sourceforge.net[Post Message] -:wsjtgroup_mail: mailto:WSJTX@groups.io[Post Message] +:wsjtgroup_mail: mailto:wsjtgroup@groups.io[Post Message] :greg_beam: mailto:ki7mt@yahoo.com[KI7MT] :joe_taylor: mailto:joe@princeton.edu[K1JT] :stuart_rackman: mailto:srackham@gmail.com[Stuart Rackham] diff --git a/doc/user_guide/en/support.adoc b/doc/user_guide/en/support.adoc index 1e4f472e2..d5737ba83 100644 --- a/doc/user_guide/en/support.adoc +++ b/doc/user_guide/en/support.adoc @@ -2,7 +2,7 @@ The best source of help in setting up your station or configuring _WSJT-X_ is the {wsjtx_group} at email address -wsjtx@groups.io. The chances are good that someone with +wsjtgroup@groups.io. The chances are good that someone with similar interests and equipment has already solved your problem and will be happy to help. To post messages here you will need to {wsjt-devel}. @@ -11,7 +11,7 @@ will be happy to help. To post messages here you will need to One of your responsibilities as a _WSJT-X_ user is to help the volunteer programmers to make the program better. Bugs may be -reported to the WSJTX forum on Groups.io {wsjtgroup_mail} or the WSJT +reported to the WSJTGROUP forum on Groups.io {wsjtgroup_mail} or the WSJT Developers list (wsjt-devel@lists.sourceforge.net). Again, you will need to {wsjtx_group2} or {wsjt-devel2}.