mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 08:31:57 -05:00
Fix another bounds error.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7864 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
a35b460e68
commit
f540df3629
@ -56,7 +56,7 @@ subroutine sync8(dd,nfa,nfb,syncmin,nfqso,s,candidate,ncand)
|
|||||||
endif
|
endif
|
||||||
t=t + s(i+nfos*icos7(n),k+nssy*36)
|
t=t + s(i+nfos*icos7(n),k+nssy*36)
|
||||||
t0=t0 + sum(s(i:i+nfos*6:nfos,k+nssy*36))
|
t0=t0 + sum(s(i:i+nfos*6:nfos,k+nssy*36))
|
||||||
if(k+144.le.NHSYM) then
|
if(k+nssy*72.le.NHSYM) then
|
||||||
t=t + s(i+nfos*icos7(n),k+nssy*72)
|
t=t + s(i+nfos*icos7(n),k+nssy*72)
|
||||||
t0=t0 + sum(s(i:i+nfos*6:nfos,k+nssy*72))
|
t0=t0 + sum(s(i:i+nfos*6:nfos,k+nssy*72))
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user