r30303 - in /desktop/unstable/libgnome-media-profiles/debian: changelog patches/01-format-security.patch patches/series

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Thu Oct 13 23:38:03 UTC 2011


Author: biebl
Date: Thu Oct 13 23:38:03 2011
New Revision: 30303

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=30303
Log:
* debian/patches/01-format-security.patch
  - Fix build failure with [-Werror=format-security].

Added:
    desktop/unstable/libgnome-media-profiles/debian/patches/01-format-security.patch
Modified:
    desktop/unstable/libgnome-media-profiles/debian/changelog
    desktop/unstable/libgnome-media-profiles/debian/patches/series

Modified: desktop/unstable/libgnome-media-profiles/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/libgnome-media-profiles/debian/changelog?rev=30303&op=diff
==============================================================================
--- desktop/unstable/libgnome-media-profiles/debian/changelog [utf-8] (original)
+++ desktop/unstable/libgnome-media-profiles/debian/changelog [utf-8] Thu Oct 13 23:38:03 2011
@@ -14,6 +14,8 @@
   * Bump debhelper compatibility level to 8.
     - Update Build-Depends on debhelper.
     - Strip debian/tmp/ from .install files.
+  * debian/patches/01-format-security.patch
+    - Fix build failure with [-Werror=format-security].
 
  -- Michael Biebl <biebl at debian.org>  Sat, 25 Jun 2011 03:51:15 +0200
 

Added: desktop/unstable/libgnome-media-profiles/debian/patches/01-format-security.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/libgnome-media-profiles/debian/patches/01-format-security.patch?rev=30303&op=file
==============================================================================
--- desktop/unstable/libgnome-media-profiles/debian/patches/01-format-security.patch (added)
+++ desktop/unstable/libgnome-media-profiles/debian/patches/01-format-security.patch [utf-8] Thu Oct 13 23:38:03 2011
@@ -1,0 +1,42 @@
+Description: Fix build failure with [-Werror=format-security]
+Author: Michael Biebl <biebl at debian.org>
+Bug: https://bugzilla.gnome.org/show_bug.cgi?id=661722
+Index: libgnome-media-profiles-3.0.0/libgnome-media-profiles/audio-profile-edit.c
+===================================================================
+--- libgnome-media-profiles-3.0.0.orig/libgnome-media-profiles/audio-profile-edit.c	2010-10-31 02:01:20.000000000 +0200
++++ libgnome-media-profiles-3.0.0/libgnome-media-profiles/audio-profile-edit.c	2011-10-14 01:34:51.792485916 +0200
+@@ -230,7 +230,7 @@
+   /* get the dialog */
+   builder = gmp_util_load_builder_file ("gnome-audio-profile-edit.ui", NULL, &error);
+   if (error != NULL) {
+-    g_warning (error->message);
++    g_warning ("%s", error->message);
+     g_error_free (error);
+     return NULL;
+   }
+Index: libgnome-media-profiles-3.0.0/libgnome-media-profiles/audio-profiles-edit.c
+===================================================================
+--- libgnome-media-profiles-3.0.0.orig/libgnome-media-profiles/audio-profiles-edit.c	2011-01-13 17:49:35.000000000 +0100
++++ libgnome-media-profiles-3.0.0/libgnome-media-profiles/audio-profiles-edit.c	2011-10-14 01:33:56.969175138 +0200
+@@ -912,7 +912,7 @@
+     builder = gmp_util_load_builder_file ("gnome-audio-profile-new.ui", transient_parent, &error);
+ 
+     if (error != NULL) {
+-      g_warning (error->message);
++      g_warning ("%s", error->message);
+       g_error_free (error);
+       return;
+     }
+Index: libgnome-media-profiles-3.0.0/libgnome-media-profiles/gmp-util.c
+===================================================================
+--- libgnome-media-profiles-3.0.0.orig/libgnome-media-profiles/gmp-util.c	2010-10-31 02:01:20.000000000 +0200
++++ libgnome-media-profiles-3.0.0/libgnome-media-profiles/gmp-util.c	2011-10-14 01:35:27.284039726 +0200
+@@ -47,7 +47,7 @@
+     goto end;
+ 
+   if (error != NULL) {
+-    g_warning (error->message);
++    g_warning ("%s", error->message);
+     g_error_free (error);
+     error = NULL;
+   }

Modified: desktop/unstable/libgnome-media-profiles/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/libgnome-media-profiles/debian/patches/series?rev=30303&op=diff
==============================================================================
--- desktop/unstable/libgnome-media-profiles/debian/patches/series [utf-8] (original)
+++ desktop/unstable/libgnome-media-profiles/debian/patches/series [utf-8] Thu Oct 13 23:38:03 2011
@@ -1,0 +1,1 @@
+01-format-security.patch




More information about the pkg-gnome-commits mailing list