********> bugfix.11 Author: Jaroslav Vacek,Jim Caldwell Date: 12/10/97 Programs: sander (locmem) Severity: minor Description: When memory allocation is used (the norm) the correct allocation of pointers is incorrectly checked in locmem. Workaround: none Fix: Make the following change to locmem.f *** locmem.f Thu Oct 9 10:17:43 1997 --- locmem_new.f Wed Dec 10 14:16:02 1997 *************** *** 464,475 **** call mexit(6,1) endif ihptr = cmalloc(nholb) ! if (ixptr.eq.0) then write(6,*) ' ** failed to allocate holl array, bytes: ',nholb call mexit(6,1) endif ipptr = cmalloc(npairb) ! if (ixptr.eq.0) then write(6,*) ' ** failed to allocate pair array, bytes: ',npairb call mexit(6,1) endif --- 464,475 ---- call mexit(6,1) endif ihptr = cmalloc(nholb) ! if (ihptr.eq.0) then write(6,*) ' ** failed to allocate holl array, bytes: ',nholb call mexit(6,1) endif ipptr = cmalloc(npairb) ! if (ipptr.eq.0) then write(6,*) ' ** failed to allocate pair array, bytes: ',npairb call mexit(6,1) endif