diff options
Diffstat (limited to 'meta-xfce/recipes-panel-plugins/timer/xfce4-timer-plugin/0001-Specify-string-format-explicitly.patch')
| -rw-r--r-- | meta-xfce/recipes-panel-plugins/timer/xfce4-timer-plugin/0001-Specify-string-format-explicitly.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/meta-xfce/recipes-panel-plugins/timer/xfce4-timer-plugin/0001-Specify-string-format-explicitly.patch b/meta-xfce/recipes-panel-plugins/timer/xfce4-timer-plugin/0001-Specify-string-format-explicitly.patch deleted file mode 100644 index 3f0bb05af4..0000000000 --- a/meta-xfce/recipes-panel-plugins/timer/xfce4-timer-plugin/0001-Specify-string-format-explicitly.patch +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 1 | From 6b786e1c161026ab5486ac218891a85db65bf3ba Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Wed, 22 Mar 2017 15:28:24 -0700 | ||
| 4 | Subject: [PATCH] Specify string format explicitly | ||
| 5 | |||
| 6 | Avoids below errors when compiling with -Wformat-security | ||
| 7 | |||
| 8 | error: format string is not a string literal (potentially insecure) | ||
| 9 | |||
| 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 11 | --- | ||
| 12 | Upstream-Status: Pending | ||
| 13 | |||
| 14 | src/xfcetimer.c | 2 +- | ||
| 15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 16 | |||
| 17 | diff --git a/src/xfcetimer.c b/src/xfcetimer.c | ||
| 18 | index 601772f..4b89682 100644 | ||
| 19 | --- a/src/xfcetimer.c | ||
| 20 | +++ b/src/xfcetimer.c | ||
| 21 | @@ -190,7 +190,7 @@ static gboolean update_function (gpointer data){ | ||
| 22 | |||
| 23 | dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, | ||
| 24 | GTK_MESSAGE_WARNING, | ||
| 25 | - GTK_BUTTONS_NONE, dialog_message); | ||
| 26 | + GTK_BUTTONS_NONE, "%s", dialog_message); | ||
| 27 | |||
| 28 | gtk_window_set_title ((GtkWindow *) dialog, dialog_title); | ||
| 29 | |||
| 30 | -- | ||
| 31 | 2.12.0 | ||
| 32 | |||
