Author: Scott Brozell, found by chernhoe Date: 11/07/02 Programs: LEaP Severity: major when building LEaP with DEBUG defined. Description: The declaration of variables sTemp1 and sTemp2 in function zbUnitIOIndexBondParameters was omitted. Because these variables were only used as arguments to the macro MESSAGE that only uses them when the preprocessor name DEBUG is defined, most builds were successful. Fix: apply the following patch to amber7/src/leap/src/leap/unitio.c: ------------------------------------------------------------------------------ *** unitio.c 2002/10/22 15:14:28 7.29 --- unitio.c 2002/11/07 21:28:22 *************** *** 1254,1259 **** --- 1254,1260 ---- double dKb, dR0; STRING sAtom1, sAtom2, sDesc; PARMSET psTemp; + STRING sTemp1, sTemp2; bFailedGeneratingParameters = FALSE; ------------------------------------------------------------------------------ Temporary workarounds: don't build LEaP with -DDEBUG. Files affected: amber7/src/leap/src/leap/unitio.c