r16679 - in /packages/unstable/brasero/debian: changelog patches/001-fix-valist.patch patches/series

joss at users.alioth.debian.org joss at users.alioth.debian.org
Fri Aug 1 16:09:45 UTC 2008


Author: joss
Date: Fri Aug  1 16:09:45 2008
New Revision: 16679

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=16679
Log:
001-fix-valist.patch: do not assume va_list is a pointer.
Closes: #493210.

Added:
    packages/unstable/brasero/debian/patches/001-fix-valist.patch
Modified:
    packages/unstable/brasero/debian/changelog
    packages/unstable/brasero/debian/patches/series

Modified: packages/unstable/brasero/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/brasero/debian/changelog?rev=16679&op=diff
==============================================================================
--- packages/unstable/brasero/debian/changelog (original)
+++ packages/unstable/brasero/debian/changelog Fri Aug  1 16:09:45 2008
@@ -1,3 +1,10 @@
+brasero (0.8.0-2) UNRELEASED; urgency=low
+
+  * 001-fix-valist.patch: do not assume va_list is a pointer.
+    Closes: #493210.
+
+ -- Josselin Mouette <joss at debian.org>  Fri, 01 Aug 2008 15:09:28 +0200
+
 brasero (0.8.0-1) unstable; urgency=low
 
   [ Alan Baghumian ]

Added: packages/unstable/brasero/debian/patches/001-fix-valist.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/brasero/debian/patches/001-fix-valist.patch?rev=16679&op=file
==============================================================================
--- packages/unstable/brasero/debian/patches/001-fix-valist.patch (added)
+++ packages/unstable/brasero/debian/patches/001-fix-valist.patch Fri Aug  1 16:09:45 2008
@@ -1,0 +1,16 @@
+Index: brasero-0.8.0/src/burn-session.c
+===================================================================
+--- brasero-0.8.0.orig/src/burn-session.c	2008-08-01 15:07:48.711809150 +0200
++++ brasero-0.8.0/src/burn-session.c	2008-08-01 15:09:10.689888277 +0200
+@@ -1438,10 +1438,7 @@
+ 	if (!priv->session)
+ 		return;
+ 
+-	if (arg_list)
+-		message = g_strdup_vprintf (format, arg_list);
+-	else
+-		message = g_strdup (format);
++	message = g_strdup_vprintf (format, arg_list);
+ 
+ 	/* we also need to validate the messages to be in UTF-8 */
+ 	if (!g_utf8_validate (message, -1, (const gchar**) &offending))

Modified: packages/unstable/brasero/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/brasero/debian/patches/series?rev=16679&op=diff
==============================================================================
--- packages/unstable/brasero/debian/patches/series (original)
+++ packages/unstable/brasero/debian/patches/series Fri Aug  1 16:09:45 2008
@@ -1,2 +1,3 @@
+001-fix-valist.patch
 006-fix-libdvdcss.patch
 007-fix-gnome-doc-utils-path.patch




More information about the pkg-gnome-commits mailing list