summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Lefevre <vincent@vinc17.net>2010-08-09 10:27:05 -0700
committerVincent Lefevre <vincent@vinc17.net>2010-08-09 10:27:05 -0700
commitc0130eb8965744b6619d116ad0f67e871d779098 (patch)
tree32005bed2d3c306f739660d19b6a3dfd2b9c9639
parentbec81386da43443ee67c5918ae006df2c44fdf4e (diff)
In postpone.c, function mutt_num_postponed, the old {{{OldPostponed}}} is never
freed. closes #3442
-rw-r--r--postpone.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/postpone.c b/postpone.c
index fffbb71c..fa3ec64d 100644
--- a/postpone.c
+++ b/postpone.c
@@ -71,6 +71,7 @@ int mutt_num_postponed (int force)
if (mutt_strcmp (Postponed, OldPostponed))
{
+ FREE (&OldPostponed);
OldPostponed = safe_strdup (Postponed);
LastModify = 0;
force = 1;