Index: trunk/psLib/src/image/psImage.c
===================================================================
--- trunk/psLib/src/image/psImage.c	(revision 1840)
+++ trunk/psLib/src/image/psImage.c	(revision 1841)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-21 22:30:19 $
+ *  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-09-21 23:15:04 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -22,5 +22,4 @@
 
 #include "psMemory.h"
-#include "psAbort.h"
 #include "psError.h"
 #include "psImage.h"
@@ -50,22 +49,9 @@
     psImage* image = (psImage* ) psAlloc(sizeof(psImage));
 
-    if (image == NULL) {
-        psAbort(__func__, " : Line %d - Failed to allocate memory", __LINE__);
-    }
-
     p_psMemSetDeallocator(image, (psFreeFcn) imageFree);
 
     image->data.V = psAlloc(sizeof(void *) * numRows);
-    if (image->data.V == NULL) {
-        psFree(image);
-        psAbort(__func__, " : Line %d - Failed to allocate memory", __LINE__);
-    }
 
     image->rawDataBuffer = psAlloc(area * elementSize);
-    if (image->rawDataBuffer == NULL) {
-        psFree(image);
-        psFree(image->data.V);
-        psAbort(__func__, " : Line %d - Failed to allocate memory", __LINE__);
-    }
 
     // set the row pointers.
