Index: /trunk/psLib/src/astro/psCoord.c
===================================================================
--- /trunk/psLib/src/astro/psCoord.c	(revision 11617)
+++ /trunk/psLib/src/astro/psCoord.c	(revision 11618)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.131 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2007-02-03 05:35:30 $
+*  @version $Revision: 1.132 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-02-03 06:01:42 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -531,5 +531,5 @@
     psF64  theta = 0.0;
     psF64  phi   = 0.0;
-    psF64  x, y, R;
+    psF64  x = 0, y = 0, R = 0;
 
     psProjectionClass class = PS_PROJ_NONE;
Index: /trunk/psLib/src/astro/psEarthOrientation.c
===================================================================
--- /trunk/psLib/src/astro/psEarthOrientation.c	(revision 11617)
+++ /trunk/psLib/src/astro/psEarthOrientation.c	(revision 11618)
@@ -8,6 +8,6 @@
  *  @author Robert Daniel DeSonia, MHPCC
  *
- *  @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-09 22:38:52 $
+ *  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-02-03 06:01:42 $
  *
  *  Copyright 2005 Maui High Performance Computing Center, University of Hawaii
@@ -1056,5 +1056,5 @@
            SEC_TO_RAD(0.00001149)*t4;
 
-    // L â Omega    (L = Mean Longitude of the Moon, Omega = F4)
+    // L â Omega    (L = Mean Longitude of the Moon, Omega = F4)
     F[2] = DEG_TO_RAD(93.27209062) +
            SEC_TO_RAD(1739527262.8478)*t -
@@ -1175,5 +1175,5 @@
 
     //Implementation adapted from PM_GRAVI in interp.f from hpiers.obspm.fr/eop-pc/models/interp.f
-    double arg[6];
+    double arg[6] = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0};
     arg[0] = (67310.54841 +
               (876600.0*3600.0 + 8640184.812866)*t
Index: /trunk/psLib/src/sys/psLine.c
===================================================================
--- /trunk/psLib/src/sys/psLine.c	(revision 11617)
+++ /trunk/psLib/src/sys/psLine.c	(revision 11618)
@@ -9,4 +9,5 @@
 #include "psConstants.h"
 #include "psLine.h"
+#include "psString.h"
 #include "psMemory.h"
 
Index: /trunk/psLib/src/sys/psLine.h
===================================================================
--- /trunk/psLib/src/sys/psLine.h	(revision 11617)
+++ /trunk/psLib/src/sys/psLine.h	(revision 11618)
@@ -9,6 +9,6 @@
  *  @author David Robbins, MHPCC
  *
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-23 22:47:23 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-02-03 06:01:42 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -20,6 +20,4 @@
 /// @addtogroup SysUtils System Utilities
 /// @{
-
-#include "psString.h"
 
 /** Structure to carry a dynamic string */
Index: /trunk/psLib/src/sys/psString.c
===================================================================
--- /trunk/psLib/src/sys/psString.c	(revision 11617)
+++ /trunk/psLib/src/sys/psString.c	(revision 11618)
@@ -13,6 +13,6 @@
  *  @author David Robbins, MHPCC
  *
- *  @version $Revision: 1.49 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-02-03 05:54:08 $
+ *  @version $Revision: 1.50 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-02-03 06:01:42 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -118,7 +118,7 @@
     PS_ASSERT_PTR_NON_NULL(format, 0);
 
-    size_t          length;             // complete string length (sans \0)
-    size_t          oldLength;          // original string length (sans \0)
-    ssize_t         tailLength;         // length of string to append
+    size_t          length = 0;             // complete string length (sans \0)
+    size_t          oldLength = 0;          // original string length (sans \0)
+    ssize_t         tailLength = 0;         // length of string to append
 
     if (*dest) {
