diff options
author | drochner <drochner@pkgsrc.org> | 2007-08-31 11:04:18 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2007-08-31 11:04:18 +0000 |
commit | 9331b2875c8736d1f6a2cfa9db394c759bb8bfb1 (patch) | |
tree | cc0fec9f3e5f338949542ea85b93185dc278e544 /mail/claws-mail/patches | |
parent | 99384f3872d6e3c5284b151e9173a73221856294 (diff) | |
download | pkgsrc-9331b2875c8736d1f6a2cfa9db394c759bb8bfb1.tar.gz |
fix format string vulnerability in POP3 client (CVE-2007-2958),
bump PKGREVISION
Diffstat (limited to 'mail/claws-mail/patches')
-rw-r--r-- | mail/claws-mail/patches/patch-ae | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mail/claws-mail/patches/patch-ae b/mail/claws-mail/patches/patch-ae new file mode 100644 index 00000000000..170c3eccbda --- /dev/null +++ b/mail/claws-mail/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2007/08/31 11:04:18 drochner Exp $ + +--- ./src/inc.c.orig 2007-08-31 12:46:22.000000000 +0200 ++++ ./src/inc.c +@@ -1203,7 +1203,7 @@ static void inc_put_error(IncState istat + mainwindow_show_error(); + + if (err_msg) { +- alertpanel_error_log(err_msg); ++ alertpanel_error_log("%s", err_msg); + g_free(err_msg); + } + } |