Files
meta-openembedded/meta-xfce/recipes-extended/libunique/libunique/0001-test-unique-Add-format-qualifier-s-for-string.patch
Andreas Müller b0b452b176 libunique: move to meta-xfce
There are the only recipes using it still and I take the maintenace burden

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
2018-04-08 17:00:06 -07:00

33 lines
1.1 KiB
Diff

From 37632aca00d48c53e91f08bc7435c721ba81b2cd Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Thu, 30 Mar 2017 14:32:55 -0700
Subject: [PATCH] test-unique: Add format qualifier %s for string
Fixes potential security issues that compiler flags
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
tests/test-unique.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/test-unique.c b/tests/test-unique.c
index b7cde45..82ee81b 100644
--- a/tests/test-unique.c
+++ b/tests/test-unique.c
@@ -82,10 +82,10 @@ app_message_cb (UniqueApp *app,
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_INFO,
GTK_BUTTONS_CLOSE,
- title);
+ "%s",title);
if (message)
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
- message);
+ "%s",message);
gtk_window_set_urgency_hint (GTK_WINDOW (dialog), TRUE);
--
2.12.1