summaryrefslogtreecommitdiff
path: root/mail/claws-mail/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2007-08-31 11:04:18 +0000
committerdrochner <drochner@pkgsrc.org>2007-08-31 11:04:18 +0000
commit9331b2875c8736d1f6a2cfa9db394c759bb8bfb1 (patch)
treecc0fec9f3e5f338949542ea85b93185dc278e544 /mail/claws-mail/patches
parent99384f3872d6e3c5284b151e9173a73221856294 (diff)
downloadpkgsrc-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-ae13
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);
+ }
+ }