********> bugfix.41 Author: Bill Ross Date: 7/19/99 Programs: Leap Severity: Moderate Description: Crashes when deleting a water added by a solvate cmd. Fix: Make the following change to container.c: ---------------------------------------------------------------------------- *** OLD container.c --- NEW container.c *************** *** 167,174 BEGIN if ( *cPContainer == NULL ) RETURNV; ! ! DisplayerDestroy(&((*cPContainer)->dDisp)); /* DEREF the contents of the CONTAINER */ --- 167,175 ----- BEGIN if ( *cPContainer == NULL ) RETURNV; ! ! if ((*cPContainer)->dDisp != NULL) ! DisplayerDestroy(&((*cPContainer)->dDisp)); /* DEREF the contents of the CONTAINER */ ----------------------------------------------------------------------------