Rocco Rutte:
[apps/madmutt.git] / pgppacket.c
index 5da38b7..206f13c 100644 (file)
@@ -22,6 +22,8 @@
 #include "pgplib.h"
 #include "pgppacket.h"
 
+#include "lib/mem.h"
+
 #define CHUNKSIZE 1024
 
 static unsigned char *pbuf = NULL;
@@ -64,7 +66,7 @@ unsigned char *pgp_read_packet (FILE * fp, size_t * len)
 
   if (!plen) {
     plen = CHUNKSIZE;
-    pbuf = safe_malloc (plen);
+    pbuf = mem_malloc (plen);
   }
 
   if (fread (&ctb, 1, 1, fp) < 1) {
@@ -198,5 +200,5 @@ bail:
 void pgp_release_packet (void)
 {
   plen = 0;
-  FREE (&pbuf);
+  mem_free (&pbuf);
 }