Summary: | [patch] fix SEGV in mail/mutt-devel | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Eygene Ryabinkin <rea-fbsd> | ||||
Component: | Individual Port(s) | Assignee: | Wesley Shields <wxs> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Eygene Ryabinkin
2008-11-06 10:20:00 UTC
Maintainer of mail/mutt-devel, Please note that PR ports/128637 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/128637 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool) Responsible Changed From-To: freebsd-ports-bugs->wxs I'll take it. Maintainer of mail/mutt-devel, Please note that PR ports/128637 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/128637 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org Maintainer of mail/mutt-devel, Please note that PR ports/128637 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/128637 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org Maintainer feedback: please apply this patch: diff -ru /usr/ports/mail/mutt-devel/Makefile ./Makefile --- /usr/ports/mail/mutt-devel/Makefile 2008-10-23 09:21:45.000000000 +0200 +++ ./Makefile 2008-11-10 23:03:30.000000000 +0100 @@ -117,7 +117,7 @@ PORTNAME= mutt-devel PORTVERSION= 1.5.18 -PORTREVISION?= 3 +PORTREVISION?= 4 CATEGORIES+= mail ipv6 .if defined(WITH_MUTT_NNTP) CATEGORIES+= news diff -ru /usr/ports/mail/mutt-devel/files/patch-imap-browse.c ./files/patch-imap-browse.c --- /usr/ports/mail/mutt-devel/files/patch-imap-browse.c 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-imap-browse.c 2008-11-10 23:06:04.000000000 +0100 @@ -0,0 +1,13 @@ +Index: imap/browse.c +Obtained from: http://dev.mutt.org/trac/changeset/5401%3Abba92e401440/imap/browse.c?old=5378%3Aac00273b3a88&old_path=imap%2Fbrowse.c +Bug description: http://dev.mutt.org/trac/ticket/3057 +=================================================================== +--- imap/browse.c ++++ imap/browse.c +@@ -229,5 +229,5 @@ + } + +- if (!imap_mxcmp(mx.mbox, idata->mailbox)) ++ if (idata->ctx && !imap_mxcmp(mx.mbox, idata->mailbox)) + { + state->new = idata->ctx->new; On Thu, Nov 06, 2008 at 15:11:05 +0000, Edwin Groothuis wrote: > Maintainer of mail/mutt-devel, > > Please note that PR ports/128637 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/128637 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > State Changed From-To: feedback->closed Committed. Thanks! wxs 2008-11-12 12:40:55 UTC FreeBSD ports repository Modified files: mail/mutt-devel Makefile Added files: mail/mutt-devel/files patch-imap-browse.c Log: Add a patch that fixes a crash (http://dev.mutt.org/trac/ticket/3057). PR: ports/128637 Submitted by: Eygene Ryabinkin <rea-fbsd@codelabs.ru> Reviewed by: Udo.Schweigert@siemens.com (maintainer) Revision Changes Path 1.298 +1 -1 ports/mail/mutt-devel/Makefile 1.3 +13 -0 ports/mail/mutt-devel/files/patch-imap-browse.c (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" |