From 169f101dc43f0581d8c52bcf8131d9eecb7cdeb0 Mon Sep 17 00:00:00 2001 From: pdmef Date: Wed, 7 Sep 2005 20:09:12 +0000 Subject: [PATCH] Rocco Rutte: - fix merge typo: pass char** to mem_free, not char* (fixes segfault) git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@485 e385b8ad-14ed-0310-8656-cc95a2468c6d --- VERSION.svn | 2 +- pattern.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION.svn b/VERSION.svn index f52aaac..629f34c 100644 --- a/VERSION.svn +++ b/VERSION.svn @@ -1 +1 @@ -484 +485 diff --git a/pattern.c b/pattern.c index 81bebdd..53cce82 100644 --- a/pattern.c +++ b/pattern.c @@ -684,7 +684,7 @@ void mutt_pattern_free (pattern_t ** pat) regfree (tmp->rx); mem_free (&tmp->rx); } - mem_free (tmp->str); + mem_free (&tmp->str); if (tmp->child) mutt_pattern_free (&tmp->child); mem_free (&tmp); -- 2.20.1