[Pkg-xfce-commits] r4311 - in goodies/branches/experimental/xfce4-clipman-plugin/debian: . patches source
Yves-Alexis Perez
corsac at alioth.debian.org
Sun Oct 17 02:13:19 UTC 2010
Author: corsac
Date: 2010-10-17 14:13:11 +0000 (Sun, 17 Oct 2010)
New Revision: 4311
Added:
goodies/branches/experimental/xfce4-clipman-plugin/debian/source/
goodies/branches/experimental/xfce4-clipman-plugin/debian/source/format
Modified:
goodies/branches/experimental/xfce4-clipman-plugin/debian/changelog
goodies/branches/experimental/xfce4-clipman-plugin/debian/patches/0001-daemon-Fix-possible-NULL-values-bug-6119-6120.patch
Log:
Switch to 3.0 (quilt) source format.
Modified: goodies/branches/experimental/xfce4-clipman-plugin/debian/changelog
===================================================================
--- goodies/branches/experimental/xfce4-clipman-plugin/debian/changelog 2010-10-17 14:05:46 UTC (rev 4310)
+++ goodies/branches/experimental/xfce4-clipman-plugin/debian/changelog 2010-10-17 14:13:11 UTC (rev 4311)
@@ -6,8 +6,9 @@
- update dh build-dep to 7.0.50~ for overrides.
* debian/rules:
- switch to dh7 tiny rules
+ * Switch to 3.0 (quilt) source format.
- -- Yves-Alexis Perez <corsac at debian.org> Sun, 17 Oct 2010 15:53:48 +0200
+ -- Yves-Alexis Perez <corsac at debian.org> Sun, 17 Oct 2010 16:06:33 +0200
xfce4-clipman-plugin (2:1.1.3-3) unstable; urgency=low
Modified: goodies/branches/experimental/xfce4-clipman-plugin/debian/patches/0001-daemon-Fix-possible-NULL-values-bug-6119-6120.patch
===================================================================
--- goodies/branches/experimental/xfce4-clipman-plugin/debian/patches/0001-daemon-Fix-possible-NULL-values-bug-6119-6120.patch 2010-10-17 14:05:46 UTC (rev 4310)
+++ goodies/branches/experimental/xfce4-clipman-plugin/debian/patches/0001-daemon-Fix-possible-NULL-values-bug-6119-6120.patch 2010-10-17 14:13:11 UTC (rev 4311)
@@ -10,18 +10,18 @@
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/daemon/gsd-clipboard-manager.c b/daemon/gsd-clipboard-manager.c
-index 494bb44..1edc068 100644
+index e5c85a4..1027dea 100644
--- a/daemon/gsd-clipboard-manager.c
+++ b/daemon/gsd-clipboard-manager.c
-@@ -119,7 +119,7 @@ default_clipboard_get_func (GtkClipboard *clipboard,
+@@ -121,7 +121,7 @@ default_clipboard_get_func (GtkClipboard *clipboard,
GtkSelectionData *selection_data_cache = NULL;
list = manager->priv->default_cache;
- for (; list->next != NULL; list = list->next) {
+ for (; list != NULL && list->next != NULL; list = list->next) {
selection_data_cache = list->data;
- if (gtk_selection_data_get_target (selection_data) ==
- gtk_selection_data_get_target (selection_data_cache)) {
+ if (selection_data->target == selection_data_cache->target) {
+ break;
@@ -154,8 +154,11 @@ default_clipboard_restore (GsdClipboardManager *manager)
GtkSelectionData *sdata;
GSList *list;
@@ -34,7 +34,4 @@
+ target_list = gtk_target_list_new (NULL, 0);
for (; list->next != NULL; list = list->next) {
sdata = list->data;
- gtk_target_list_add (target_list,
---
-1.6.3.3
-
+ gtk_target_list_add (target_list, sdata->target, 0, 0);
Added: goodies/branches/experimental/xfce4-clipman-plugin/debian/source/format
===================================================================
--- goodies/branches/experimental/xfce4-clipman-plugin/debian/source/format (rev 0)
+++ goodies/branches/experimental/xfce4-clipman-plugin/debian/source/format 2010-10-17 14:13:11 UTC (rev 4311)
@@ -0,0 +1 @@
+3.0 (quilt)
More information about the Pkg-xfce-commits
mailing list