Index: trunk/psLib/src/astro/psTime.c
===================================================================
--- trunk/psLib/src/astro/psTime.c	(revision 1247)
+++ trunk/psLib/src/astro/psTime.c	(revision 1248)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-21 01:29:33 $
+ *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-21 01:56:28 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -29,5 +29,4 @@
 #include "psTime.h"
 #include "psError.h"
-#define PS_ALLOW_MALLOC
 #include "psMemory.h"
 
@@ -173,4 +172,6 @@
     // Converts psTime to YYYY/MM/DD,HH:MM:SS.SSS in string form
     ms = time.tv_usec/1000;
+
+    // tmTime variable is statically allocated, no need to free
     tmTime = gmtime(&time.tv_sec);
     if(!strftime(tempString, MAX_TIME_STRING_LENGTH, "%Y/%m/%d,%H:%M:%S", tmTime)) {
@@ -182,5 +183,4 @@
     }
     psFree(tempString);
-    free(tmTime);
 
     return timeString;
