Try to avoid an array bounds error that has been reported by a user. Cause unknown.

This commit is contained in:
Steve Franke 2019-05-03 10:51:45 -05:00
parent ab282fae78
commit 3611be8ba0
1 changed files with 6 additions and 1 deletions

View File

@ -89,7 +89,12 @@ subroutine sync8(dd,nfa,nfb,syncmin,nfqso,maxcand,s,candidate, &
enddo
iz=ib-ia+1
call indexx(red(ia:ib),iz,indx)
ibase=indx(nint(0.40*iz)) - 1 + ia
npctile=nint(0.40*iz)
if(npctile.lt.1) then ! something is wrong; bail out
ncand=0
return;
endif
ibase=indx(npctile) - 1 + ia
if(ibase.lt.1) ibase=1
if(ibase.gt.nh1) ibase=nh1
base=red(ibase)