Index: trunk/psLib/src/sys/psString.c
===================================================================
--- trunk/psLib/src/sys/psString.c	(revision 6962)
+++ trunk/psLib/src/sys/psString.c	(revision 6989)
@@ -13,6 +13,6 @@
  *  @author David Robbins, MHPCC
  *
- *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-04-23 01:08:34 $
+ *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-04-26 02:19:23 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -177,8 +177,9 @@
                       const char *splitters)
 {
-    PS_ASSERT_PTR_NON_NULL(splitters, NULL);
     psList *values = psListAlloc(NULL); // The list of values to return
-    if (string == NULL)
-        return values;
+    PS_ASSERT_PTR_NON_NULL(string, values);
+    PS_ASSERT_PTR_NON_NULL(splitters, values);
+    //    if (string == NULL)
+    //        return values;
 
     unsigned int length = strlen(string); // The length of the string
