Index: /trunk/psModules/src/camera/pmCellSquish.c
===================================================================
--- /trunk/psModules/src/camera/pmCellSquish.c	(revision 12503)
+++ /trunk/psModules/src/camera/pmCellSquish.c	(revision 12504)
@@ -23,5 +23,5 @@
     }
 
-    pmShifts *shifts;                   // Orthogonal transfer shifts
+    pmShifts *shifts = NULL;                   // Orthogonal transfer shifts
     if (useShifts) {
         bool mdok;                      // Status of MD lookup
@@ -40,7 +40,7 @@
 
     // First pass to get the bounds, make sure everything is legit.
-    int xMin, xMax, yMin, yMax;         // Bounds of the squish
+    int xMin = 0, xMax = 0, yMin = 0, yMax = 0; // Bounds of the squish
     bool valid = false;                 // Do we have a valid readout?
-    int col0, row0, numCols, numRows;   // Window parameters for the readouts
+    int col0 = 0, row0 = 0, numCols = 0, numRows = 0;// Window parameters for the readouts
     int xShift = 0, yShift = 0;         // Shift due to orthogonal transfer, to be applied
     if (useShifts && shifts->xyRelative) {
Index: /trunk/psModules/src/config/pmConfig.c
===================================================================
--- /trunk/psModules/src/config/pmConfig.c	(revision 12503)
+++ /trunk/psModules/src/config/pmConfig.c	(revision 12504)
@@ -4,6 +4,6 @@
  *  @author EAM (IfA)
  *
- *  @version $Revision: 1.78 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-03-20 00:52:16 $
+ *  @version $Revision: 1.79 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-03-20 01:30:45 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -427,6 +427,5 @@
                     continue;
                 }
-                psTrace("psModules.config", 7, "Setting trace level for %s to %d\n", traceItem->name,
-                        traceItem->data.S32);
+                psTrace("psModules.config", 7, "Setting trace level for %s to %d\n", traceItem->name, traceItem->data.S32);
                 (void)psTraceSetLevel(traceItem->name, traceItem->data.S32);
             }
Index: /trunk/psModules/src/detrend/pmShifts.c
===================================================================
--- /trunk/psModules/src/detrend/pmShifts.c	(revision 12503)
+++ /trunk/psModules/src/detrend/pmShifts.c	(revision 12504)
@@ -211,5 +211,5 @@
         psMetadata *row = table->data[i]; // The row of interest
 
-        const char *chipName;           // Name of chip
+        const char *chipName = NULL;    // Name of chip
         if (phuLevel == PM_FPA_LEVEL_FPA) {
             // Only care about the chip name if there's more than one chip
@@ -223,5 +223,5 @@
             }
         }
-        const char *cellName;           // Name of cell
+        const char *cellName = NULL;    // Name of cell
         if (phuLevel <= PM_FPA_LEVEL_CHIP) {
             // Only care about the cell name if there's a chip
