********>Bugfix 62:
Author: Dave Case
Date: 05/10/2006
Programs: ambpdb
Description: The allocation for the ipres() array is too small. This can
lead to a segmentation fault under some circumstances.
Fix: apply the following patch to amber8/src/etc/ambpdb.f
------------------------------------------------------------------------------
*** ambpdb.f 2005/01/11 22:42:59 1.17
--- ambpdb.f 2006/05/10 15:11:22
***************
*** 85,91 ****
c
c ------ Allocate memory: ------
c
! allocate( c(3*natom), igraph(natom), ipres(nres), lbres(nres),
. lastat(nres), ib(nbond), jb(nbond), chg(natom),
. ftype(natom), fhybrid(natom), fhbdon(natom),fhbh(natom),
. fhbacc(natom), fhbene(natom), itf(natom), jtf(natom),
--- 85,91 ----
c
c ------ Allocate memory: ------
c
! allocate( c(3*natom), igraph(natom), ipres(nres+1), lbres(nres),
. lastat(nres), ib(nbond), jb(nbond), chg(natom),
. ftype(natom), fhybrid(natom), fhbdon(natom),fhbh(natom),
. fhbacc(natom), fhbene(natom), itf(natom), jtf(natom),
------------------------------------------------------------------------------
Temporary workarounds: none