[Pkg-xfce-commits] r8401 - in /goodies/branches/experimental/xfce4-xkb-plugin/debian: changelog patches/git-fix-crash.patch patches/series
Jackson Doak
noskcaj-guest at moszumanska.debian.org
Wed Apr 9 22:13:16 UTC 2014
Author: noskcaj-guest
Date: Wed Apr 9 22:13:16 2014
New Revision: 8401
URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=8401
Log:
- Add git-fix-crash.patch. LP: #978230
+ Fix crash in xkb_util_normalize_group_name
Added:
goodies/branches/experimental/xfce4-xkb-plugin/debian/patches/git-fix-crash.patch
Modified:
goodies/branches/experimental/xfce4-xkb-plugin/debian/changelog
goodies/branches/experimental/xfce4-xkb-plugin/debian/patches/series
Modified: goodies/branches/experimental/xfce4-xkb-plugin/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/branches/experimental/xfce4-xkb-plugin/debian/changelog?rev=8401&op=diff
==============================================================================
--- goodies/branches/experimental/xfce4-xkb-plugin/debian/changelog (original)
+++ goodies/branches/experimental/xfce4-xkb-plugin/debian/changelog Wed Apr 9 22:13:16 2014
@@ -9,6 +9,8 @@
* debian/patches/:
- Add 01-font-selection.patch. Closes: #576072 LP: #733563
+ Makes the xkb plugin change font with the rest of the system
+ - Add git-fix-crash.patch. LP: #978230
+ + Fix crash in xkb_util_normalize_group_name
-- Jackson Doak <noskcaj at ubuntu.com> Thu, 10 Apr 2014 07:57:58 +1000
Added: goodies/branches/experimental/xfce4-xkb-plugin/debian/patches/git-fix-crash.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/branches/experimental/xfce4-xkb-plugin/debian/patches/git-fix-crash.patch?rev=8401&op=file
==============================================================================
--- goodies/branches/experimental/xfce4-xkb-plugin/debian/patches/git-fix-crash.patch (added)
+++ goodies/branches/experimental/xfce4-xkb-plugin/debian/patches/git-fix-crash.patch Wed Apr 9 22:13:16 2014
@@ -0,0 +1,21 @@
+Origin: http://git.xfce.org/panel-plugins/xfce4-xkb-plugin/commit/?id=afc0c84257d33e712b06cc3e5de7b0fe63480ebd
+Author: Igor Slepchin <igor.slepchin at gmail.com>
+Description: Fix crash in xkb_util_normalize_group_name
+ Correctly compute offset of the first separator char in group name.
+Bug-Ubuntu: https://launchpad.net/bugs/978230
+
+---
+ panel-plugin/xkb-util.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/panel-plugin/xkb-util.c
++++ b/panel-plugin/xkb-util.c
+@@ -81,7 +81,7 @@ xkb_util_normalize_group_name (const gch
+ {
+ if (!((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <= 'Z')))
+ {
+- index_of_na = group_name - c;
++ index_of_na = c - group_name;
+ break;
+ }
+ }
Modified: goodies/branches/experimental/xfce4-xkb-plugin/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/branches/experimental/xfce4-xkb-plugin/debian/patches/series?rev=8401&op=diff
==============================================================================
--- goodies/branches/experimental/xfce4-xkb-plugin/debian/patches/series (original)
+++ goodies/branches/experimental/xfce4-xkb-plugin/debian/patches/series Wed Apr 9 22:13:16 2014
@@ -1 +1,2 @@
01-font_selection.patch
+git-fix-crash.patch
More information about the Pkg-xfce-commits
mailing list