drop mem_alloc and mem_free, use my own hand crafted optmized macros that
[apps/madmutt.git] / lib / rx.c
index c0f6982..772fa8d 100644 (file)
--- a/lib/rx.c
+++ b/lib/rx.c
@@ -8,6 +8,8 @@
 #include "config.h"
 #endif
 
+#include <lib-lib/mem.h>
+
 #include "rx.h"
 
 #include "mem.h"
@@ -25,10 +27,10 @@ rx_t *rx_compile (const char *s, int flags) {
 }
 
 void rx_free (rx_t** p) {
-  mem_free(&(*p)->pattern);
+  p_delete(&(*p)->pattern);
   regfree ((*p)->rx);
-  mem_free(&(*p)->rx);
-  mem_free(p);
+  p_delete(&(*p)->rx);
+  p_delete(p);
 }
 
 int rx_compare (const rx_t* r1, const rx_t* r2) {