mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-06 15:20:12 +00:00
libunique: Fix build with secutiy flags on
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
+32
@@ -0,0 +1,32 @@
|
|||||||
|
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
|
||||||
|
|
||||||
@@ -8,6 +8,7 @@ SRC_URI = "${GNOME_MIRROR}/libunique/1.1/libunique-${PV}.tar.bz2 \
|
|||||||
file://noconst.patch \
|
file://noconst.patch \
|
||||||
file://build.patch \
|
file://build.patch \
|
||||||
file://0001-Makefile.am-use-LIBTOOL-instead-of-hardcoded-libtool.patch \
|
file://0001-Makefile.am-use-LIBTOOL-instead-of-hardcoded-libtool.patch \
|
||||||
|
file://0001-test-unique-Add-format-qualifier-s-for-string.patch \
|
||||||
"
|
"
|
||||||
|
|
||||||
SRC_URI[md5sum] = "7955769ef31f1bc4f83446dbb3625e6d"
|
SRC_URI[md5sum] = "7955769ef31f1bc4f83446dbb3625e6d"
|
||||||
|
|||||||
Reference in New Issue
Block a user