r38372 - in /packages/unstable/libgda5/debian: changelog patches/10-format-security.patch patches/series

pochu at users.alioth.debian.org pochu at users.alioth.debian.org
Wed Jun 5 08:13:47 UTC 2013


Author: pochu
Date: Wed Jun  5 08:13:47 2013
New Revision: 38372

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=38372
Log:
* debian/patches/10-format-security.patch:
  + Fix printf format with the new upstream release.

Added:
    packages/unstable/libgda5/debian/patches/10-format-security.patch
Modified:
    packages/unstable/libgda5/debian/changelog
    packages/unstable/libgda5/debian/patches/series

Modified: packages/unstable/libgda5/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/libgda5/debian/changelog?rev=38372&op=diff
==============================================================================
--- packages/unstable/libgda5/debian/changelog [utf-8] (original)
+++ packages/unstable/libgda5/debian/changelog [utf-8] Wed Jun  5 08:13:47 2013
@@ -2,6 +2,8 @@
 
   * New upstream release.
     + Fixes FTBFS with new gobject-introspection. Closes: #708806.
+  * debian/patches/10-format-security.patch:
+    + Fix printf format with the new upstream release.
 
  -- Emilio Pozuelo Monfort <pochu at debian.org>  Tue, 04 Jun 2013 21:57:19 +0200
 

Added: packages/unstable/libgda5/debian/patches/10-format-security.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/libgda5/debian/patches/10-format-security.patch?rev=38372&op=file
==============================================================================
--- packages/unstable/libgda5/debian/patches/10-format-security.patch (added)
+++ packages/unstable/libgda5/debian/patches/10-format-security.patch [utf-8] Wed Jun  5 08:13:47 2013
@@ -1,0 +1,16 @@
+--- a/tools/gda-sql.c
++++ b/tools/gda-sql.c
+@@ -6576,11 +6576,11 @@
+ color_print (GdaSqlColor color, OutputFormat format, const char *fmt, ...)
+ {
+ 	va_list args;
+-	g_print (color_s (color, format));
++	g_print ("%s", color_s (color, format));
+         va_start (args, fmt);
+ 	g_vprintf (fmt, args);
+         va_end (args);
+-	g_print (color_s (GDA_SQL_COLOR_RESET, format));
++	g_print ("%s", color_s (GDA_SQL_COLOR_RESET, format));
+ }
+ 
+ const gchar *

Modified: packages/unstable/libgda5/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/libgda5/debian/patches/series?rev=38372&op=diff
==============================================================================
--- packages/unstable/libgda5/debian/patches/series [utf-8] (original)
+++ packages/unstable/libgda5/debian/patches/series [utf-8] Wed Jun  5 08:13:47 2013
@@ -1,1 +1,2 @@
 01-link-sqlite-provider-against-sqlite3.patch
+10-format-security.patch




More information about the pkg-gnome-commits mailing list