From: pdmef Date: Wed, 7 Sep 2005 20:09:12 +0000 (+0000) Subject: Rocco Rutte: X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=169f101dc43f0581d8c52bcf8131d9eecb7cdeb0;ds=sidebyside 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 --- 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);