Index: /trunk/psLib/src/sys/psLine.c
===================================================================
--- /trunk/psLib/src/sys/psLine.c	(revision 7949)
+++ /trunk/psLib/src/sys/psLine.c	(revision 7950)
@@ -24,5 +24,6 @@
     line->Nline = 0;
     line->NLINE = Nline;
-    line->line = psAlloc(Nline);
+    //    line->line = psAlloc(Nline);
+    line->line = psStringAlloc(Nline);
 
     return line;
Index: /trunk/psLib/src/sys/psLine.h
===================================================================
--- /trunk/psLib/src/sys/psLine.h	(revision 7949)
+++ /trunk/psLib/src/sys/psLine.h	(revision 7950)
@@ -11,6 +11,6 @@
  *  @author David Robbins, MHPCC
  *
- *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-07-14 02:26:25 $
+ *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-07-21 02:39:33 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -19,4 +19,6 @@
 #ifndef PS_LINE_H
 #define PS_LINE_H
+
+#include "psString.h"
 
 /** @addtogroup SysUtils
@@ -29,5 +31,5 @@
     long NLINE;                        ///< allocated length
     long Nline;                        ///< current length
-    char *line;                        ///< character string data
+    psString line;                     ///< character string data
 }
 psLine;
