mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
e2d8066922
Signed-off-by: Khem Raj <raj.khem@gmail.com>
33 lines
1.1 KiB
Diff
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
|
|
|