[Pkg-xfce-commits] r9012 - in /goodies/trunk/xfce4-verve-plugin/debian: changelog patches/01_fix-format-string.patch patches/series

Yves-Alexis Perez corsac at moszumanska.debian.org
Mon May 4 16:02:48 UTC 2015


Author: corsac
Date: Mon May  4 16:02:48 2015
New Revision: 9012

URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=9012
Log:
* debian/patches:
  - 01_fix-format-string added, fix format string issue.

Added:
    goodies/trunk/xfce4-verve-plugin/debian/patches/01_fix-format-string.patch
    goodies/trunk/xfce4-verve-plugin/debian/patches/series
Modified:
    goodies/trunk/xfce4-verve-plugin/debian/changelog

Modified: goodies/trunk/xfce4-verve-plugin/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-verve-plugin/debian/changelog?rev=9012&op=diff
==============================================================================
--- goodies/trunk/xfce4-verve-plugin/debian/changelog	(original)
+++ goodies/trunk/xfce4-verve-plugin/debian/changelog	Mon May  4 16:02:48 2015
@@ -5,6 +5,8 @@
     - 01_configure-call-xdt-feature-debug dropped, included upstream.
   * debian/control:
     - replace libxfcegui4 build-dep by libxfce4ui.
+  * debian/patches:
+    - 01_fix-format-string added, fix format string issue.
 
  -- Yves-Alexis Perez <corsac at debian.org>  Mon, 04 May 2015 16:37:07 +0200
 

Added: goodies/trunk/xfce4-verve-plugin/debian/patches/01_fix-format-string.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-verve-plugin/debian/patches/01_fix-format-string.patch?rev=9012&op=file
==============================================================================
--- goodies/trunk/xfce4-verve-plugin/debian/patches/01_fix-format-string.patch	(added)
+++ goodies/trunk/xfce4-verve-plugin/debian/patches/01_fix-format-string.patch	Mon May  4 16:02:48 2015
@@ -0,0 +1,26 @@
+From 0f058b837feb5a2162a89c486b6b0e4d20be4bc7 Mon Sep 17 00:00:00 2001
+From: Landry Breuil <landry at xfce.org>
+Date: Thu, 5 Feb 2015 17:57:20 +0100
+Subject: [PATCH] pass a format string to silence a -Werror=format-security
+ warning (#11505)
+
+---
+ panel-plugin/verve-plugin.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/panel-plugin/verve-plugin.c b/panel-plugin/verve-plugin.c
+index 4b91056..13be53e 100644
+--- a/panel-plugin/verve-plugin.c
++++ b/panel-plugin/verve-plugin.c
+@@ -412,7 +412,7 @@ verve_plugin_keypress_cb (GtkWidget   *entry,
+             gchar *msg = g_strconcat (_("Could not execute command:"), " ", command, NULL);
+ 
+             /* Display error message dialog */
+-            xfce_dialog_show_error (NULL, NULL, msg);
++            xfce_dialog_show_error (NULL, NULL, "%s", msg);
+ 
+             /* Free message */
+             g_free (msg);
+-- 
+2.1.4
+

Added: goodies/trunk/xfce4-verve-plugin/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-verve-plugin/debian/patches/series?rev=9012&op=file
==============================================================================
--- goodies/trunk/xfce4-verve-plugin/debian/patches/series	(added)
+++ goodies/trunk/xfce4-verve-plugin/debian/patches/series	Mon May  4 16:02:48 2015
@@ -0,0 +1 @@
+01_fix-format-string.patch




More information about the Pkg-xfce-commits mailing list