X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib%2Frx.c;h=55951085ef85a605ebfc148d4b27c8a327556341;hp=c0f6982281dd505bf30751a60b06647a27711194;hb=7f7a0be369840b290248e5b0302beb447fa1b3cd;hpb=ba5e3af4ea19e1d20c80941c077039871ec84258 diff --git a/lib/rx.c b/lib/rx.c index c0f6982..5595108 100644 --- a/lib/rx.c +++ b/lib/rx.c @@ -8,16 +8,17 @@ #include "config.h" #endif +#include +#include + #include "rx.h" -#include "mem.h" -#include "str.h" rx_t *rx_compile (const char *s, int flags) { - rx_t *pp = mem_calloc (1, sizeof (rx_t)); + rx_t *pp = p_new(rx_t, 1); - pp->pattern = str_dup (s); - pp->rx = mem_calloc (1, sizeof (regex_t)); + pp->pattern = m_strdup(s); + pp->rx = p_new(regex_t, 1); if (REGCOMP(pp->rx, NONULL (s), flags) != 0) rx_free (&pp); @@ -25,10 +26,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) {