diff src/readpstlog.c @ 172:6954d315aaa8

move version-info into main configure.in, and set it properly. prefix all external symbols in the shared library with pst_ to avoid symbol clashes with other shared libraries.
author Carl Byington <carl@five-ten-sg.com>
date Sat, 04 Apr 2009 16:00:48 -0700
parents fc11b1d1ad34
children
line wrap: on
line diff
--- a/src/readpstlog.c	Sun Mar 29 08:51:13 2009 -0700
+++ b/src/readpstlog.c	Sat Apr 04 16:00:48 2009 -0700
@@ -63,7 +63,7 @@
         return 4;
     }
 
-    buf = (char*) xmalloc(BUF_SIZE);
+    buf = (char*) pst_malloc(BUF_SIZE);
 
     while (!stop) {
         int64_t temp;
@@ -213,7 +213,7 @@
     while ((tmp = strchr(tmp, ',')) != NULL) {
         tmp++; count++;
     }
-    *targ = (int*)xmalloc(count * sizeof(int));
+    *targ = (int*)pst_malloc(count * sizeof(int));
     i = *targ; // for convienience
     tmp = args;
     z = 0;