Index: trunk/psModules/src/camera/pmFPARead.c
===================================================================
--- trunk/psModules/src/camera/pmFPARead.c	(revision 11475)
+++ trunk/psModules/src/camera/pmFPARead.c	(revision 11527)
@@ -183,7 +183,7 @@
     }
 
-    bool (*hduReadFunc)(pmHDU*, psFits*); // Function to use to read the HDU
-    psArray **imageArray;               // Array of images in the HDU
-    psElemType imageType;               // Expected type for image
+    bool (*hduReadFunc)(pmHDU*, psFits*) = NULL; // Function to use to read the HDU
+    psArray **imageArray = NULL; // Array of images in the HDU
+    psElemType imageType = PS_TYPE_F32; // Expected type for image
     switch (type) {
     case FPA_READ_TYPE_IMAGE:
@@ -245,5 +245,5 @@
         }
 
-        psImage **target;               // Place in readout to put carved image
+        psImage **target = NULL;               // Place in readout to put carved image
         switch (type) {
         case FPA_READ_TYPE_IMAGE:
Index: trunk/psModules/src/camera/pmFPA_JPEG.c
===================================================================
--- trunk/psModules/src/camera/pmFPA_JPEG.c	(revision 11475)
+++ trunk/psModules/src/camera/pmFPA_JPEG.c	(revision 11527)
@@ -5,6 +5,6 @@
  *  @author EAM, IfA
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-26 00:05:17 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-02-01 03:15:13 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -147,6 +147,8 @@
     }
 
-    float min, max;                 // Minimum and maximum for stretch
-    float mean, delta;
+    float min = 0;
+    float max = 0;                 // Minimum and maximum for stretch
+    float mean = 0;
+    float delta = 0;
 
     // measure the image statistics for scaling
