mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-24 21:28:41 -05:00
Protect against a bounds error when no input data.
This commit is contained in:
parent
b25ef318a4
commit
3d04c767ca
@ -425,9 +425,13 @@ subroutine q65_ccf_85(s1,iz,jz,nfqso,ia,ia2,ipk,jpk,f0,xdt,imsg_best, &
|
||||
endif
|
||||
best(imsg)=ccfmax
|
||||
enddo ! imsg
|
||||
|
||||
deallocate(ccf)
|
||||
best(imsg_best)=0.
|
||||
better=ccf_best/maxval(best)
|
||||
better=0.
|
||||
if(imsg_best.gt.0) then
|
||||
best(imsg_best)=0.
|
||||
better=ccf_best/maxval(best)
|
||||
endif
|
||||
|
||||
return
|
||||
end subroutine q65_ccf_85
|
||||
|
Loading…
Reference in New Issue
Block a user