summaryrefslogtreecommitdiffstats
path: root/buffy.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-10-15 01:17:41 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-10-15 01:17:41 +0000
commita9ea1add36030ef996c8f434a2baadb32ed4357d (patch)
treefaa58bac081be10f228e42223db9204eaf3d3607 /buffy.c
parent1d7247612a8421a3161ed44cee3647a077a2436c (diff)
Fixing a memory hog which was introduced by the edit-message patch.
Diffstat (limited to 'buffy.c')
-rw-r--r--buffy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/buffy.c b/buffy.c
index a90730a7..512d70b0 100644
--- a/buffy.c
+++ b/buffy.c
@@ -97,7 +97,7 @@ int test_last_status_new (FILE * f)
return (0);
hdr = mutt_new_header ();
- mutt_read_rfc822_header (f, hdr);
+ mutt_read_rfc822_header (f, hdr, 0);
if (!(hdr->read || hdr->old))
result = 1;
mutt_free_header (&hdr);