]> git.pld-linux.org Git - packages/libreport.git/blame - format-security.patch
- updated to 2.1.3
[packages/libreport.git] / format-security.patch
CommitLineData
fabfa611
JR
1--- libreport-2.0.16/src/plugins/ureport.c~ 2012-09-25 09:40:58.000000000 +0200
2+++ libreport-2.0.16/src/plugins/ureport.c 2012-10-15 12:54:26.063200601 +0200
3@@ -383,7 +383,7 @@
4 {
5 log(_("This problem has already been reported."));
6 if (response->message)
7- log(response->message);
8+ log("%s", response->message);
9 log("THANKYOU");
10 }
11 }
12--- libreport-2.0.16/src/gui-wizard-gtk/wizard.c~ 2012-10-10 18:11:04.000000000 +0200
13+++ libreport-2.0.16/src/gui-wizard-gtk/wizard.c 2012-10-15 12:55:58.123197354 +0200
14@@ -281,7 +281,7 @@
15 GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
16 GTK_MESSAGE_WARNING,
17 GTK_BUTTONS_CLOSE,
18- message);
19+ "%s", message);
20
21 gtk_window_set_transient_for(GTK_WINDOW(wrong_settings), GTK_WINDOW(g_wnd_assistant));
22 gtk_message_dialog_set_markup(GTK_MESSAGE_DIALOG(wrong_settings),
23@@ -2753,7 +2753,7 @@
24 GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
25 GTK_MESSAGE_WARNING,
26 GTK_BUTTONS_CLOSE,
27- message);
28+ "%s", message);
29 free(message);
30 gtk_window_set_transient_for(GTK_WINDOW(dlg), GTK_WINDOW(g_wnd_assistant));
31 gtk_dialog_run(GTK_DIALOG(dlg));
This page took 0.07755 seconds and 4 git commands to generate.