Index: /branches/eam_rel9_p0/psModules/src/astrom/pmFPARead.c
===================================================================
--- /branches/eam_rel9_p0/psModules/src/astrom/pmFPARead.c	(revision 6386)
+++ /branches/eam_rel9_p0/psModules/src/astrom/pmFPARead.c	(revision 6387)
@@ -178,5 +178,5 @@
 
         // Only read chips marked to "read"
-        if (! chip->process || chip->exists) {
+        if (! chip || ! chip->process || chip->exists) {
             psTrace(__func__, 2, "Ignoring chip %d...\n", i);
             continue;
@@ -201,5 +201,5 @@
 
             // Only read cells marked to "read"
-            if (! cell->process || cell->exists) {
+            if (!cell || ! cell->process || cell->exists) {
                 psTrace(__func__, 3, "Ignoring chip %d...\n", i);
                 continue;
