mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 02:50:46 +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
|
||||||
|
|
||||||
@@ -4,11 +4,12 @@ HOMEPAGE = "https://wiki.gnome.org/Attic/LibUnique"
|
|||||||
BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=libunique"
|
BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=libunique"
|
||||||
|
|
||||||
SRC_URI = "${GNOME_MIRROR}/libunique/1.1/libunique-${PV}.tar.bz2 \
|
SRC_URI = "${GNOME_MIRROR}/libunique/1.1/libunique-${PV}.tar.bz2 \
|
||||||
file://fix_for_compile_with_gcc-4.6.0.patch \
|
file://fix_for_compile_with_gcc-4.6.0.patch \
|
||||||
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"
|
||||||
SRC_URI[sha256sum] = "e5c8041cef8e33c55732f06a292381cb345db946cf792a4ae18aa5c66cdd4fbb"
|
SRC_URI[sha256sum] = "e5c8041cef8e33c55732f06a292381cb345db946cf792a4ae18aa5c66cdd4fbb"
|
||||||
|
|||||||
Reference in New Issue
Block a user