aboutsummaryrefslogtreecommitdiff
path: root/src/inc.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-08-23 01:27:21 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-08-23 01:27:21 +0000
commit1af4d68a52c15c008b3e9d50d21348d509dd0c26 (patch)
tree58b3807de94b5d6545255f121e22869ae63cd015 /src/inc.c
parent08b6c427a1c7f206927d66a49bb5860287c9b672 (diff)
fixed format string vulnerability.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1880 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/inc.c')
-rw-r--r--src/inc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inc.c b/src/inc.c
index 4a0c96d8..fff5766e 100644
--- a/src/inc.c
+++ b/src/inc.c
@@ -1364,7 +1364,7 @@ static void inc_put_error(IncState istate, const gchar *msg)
log_warning("%s\n", log_msg);
}
if (err_msg) {
- alertpanel_error(err_msg);
+ alertpanel_error("%s", err_msg);
g_free(err_msg);
}
}