[SCM] beast/master: Patch reviewed.

alessio at users.alioth.debian.org alessio at users.alioth.debian.org
Tue Nov 29 02:31:55 UTC 2011


The following commit has been merged in the master branch:
commit bccf6a0decf2c29cc53626290724099cb73a4960
Author: Alessio Treglia <alessio at debian.org>
Date:   Tue Nov 29 03:31:47 2011 +0100

    Patch reviewed.

diff --git a/debian/patches/400-format-security.patch b/debian/patches/400-format-security.patch
index 195b281..58cd3f0 100644
--- a/debian/patches/400-format-security.patch
+++ b/debian/patches/400-format-security.patch
@@ -1,11 +1,14 @@
 Description: fix warnings generated with -Wformat-security
 Author: Ilya Barygin <randomaction at ubuntu.com>
+Reviewed-by: Alessio Treglia <alessio at debian.org>
+Last-Update: 2011-11-29
 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=647040
 Bug: https://bugzilla.gnome.org/show_bug.cgi?id=665097
 ---
+ bse/bsecxxvalue.cc  |    4 ++--
  bse/bsemain.cc      |    4 ++--
  sfi/sfidl-parser.cc |    2 +-
- 2 files changed, 3 insertions(+), 3 deletions(-)
+ 3 files changed, 5 insertions(+), 5 deletions(-)
 
 --- beast.orig/sfi/sfidl-parser.cc
 +++ beast/sfi/sfidl-parser.cc
@@ -32,3 +35,17 @@ Bug: https://bugzilla.gnome.org/show_bug.cgi?id=665097
        bse_device_dump_list (BSE_TYPE_MIDI_DEVICE, "  ", TRUE, NULL, NULL);
      }
  }
+--- beast.orig/bse/bsecxxvalue.cc
++++ beast/bse/bsecxxvalue.cc
+@@ -56,9 +56,9 @@ Value::get_string () const
+ {
+   GValue *v = gvalue();
+   if (SFI_VALUE_HOLDS_STRING (v))
+-    return sfi_value_get_string (v);
++    return (const SfiString) sfi_value_get_string (v);
+   else if (SFI_VALUE_HOLDS_CHOICE (v))
+-    return sfi_value_get_choice (v);
++    return (const SfiString) sfi_value_get_choice (v);
+   else
+     throw WrongTypeGValue (G_STRLOC);
+ }

-- 
beast packaging



More information about the pkg-multimedia-commits mailing list