summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2013-03-05 22:28:08 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2013-03-05 22:28:08 +0000
commit21535af25587f83d79c065c4d12019a3dee8247c (patch)
tree3b0345d84bce5c8a4d892a6f51fa8f0604a85720 /app-accessibility/at-spi2-core/files
parentClean up old revision. (diff)
downloadgentoo-2-21535af25587f83d79c065c4d12019a3dee8247c.tar.gz
gentoo-2-21535af25587f83d79c065c4d12019a3dee8247c.tar.bz2
gentoo-2-21535af25587f83d79c065c4d12019a3dee8247c.zip
Clean up old revisions.
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'app-accessibility/at-spi2-core/files')
-rw-r--r--app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-deregister.patch28
-rw-r--r--app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-hung-crash-1.patch28
-rw-r--r--app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-hung-crash-2.patch26
3 files changed, 0 insertions, 82 deletions
diff --git a/app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-deregister.patch b/app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-deregister.patch
deleted file mode 100644
index c5618b10895c..000000000000
--- a/app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-deregister.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From ca6778ba2a6c4fed24d5468213f8ed918f3dcbe4 Mon Sep 17 00:00:00 2001
-From: Mike Gorse <mgorse@suse.com>
-Date: Fri, 7 Dec 2012 11:21:19 -0600
-Subject: [PATCH 3/3] Fix deregistering of applications
-
----
- registryd/registry.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/registryd/registry.c b/registryd/registry.c
-index a64e094..e283a90 100644
---- a/registryd/registry.c
-+++ b/registryd/registry.c
-@@ -290,9 +290,10 @@ handle_disconnection (DBusConnection *bus, DBusMessage *message, void *user_data
- for (i = 0; i < reg->apps->len; i++)
- {
- SpiReference *ref = g_ptr_array_index (reg->apps, i);
-- while (!g_strcmp0 (old, ref->name))
-+ if (!g_strcmp0 (old, ref->name))
- {
- remove_application (reg, bus, i);
-+ i--;
- }
- }
-
---
-1.8.0
-
diff --git a/app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-hung-crash-1.patch b/app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-hung-crash-1.patch
deleted file mode 100644
index 46d79ca757ad..000000000000
--- a/app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-hung-crash-1.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 860ccecf3de3fdca6742060174cab1f90d708fb3 Mon Sep 17 00:00:00 2001
-From: Mike Gorse <mgorse@suse.com>
-Date: Thu, 6 Dec 2012 09:50:18 -0600
-Subject: [PATCH 1/3] Remove the correct datum when clearing a hung process
-
-When clearing hung processes, we were passing the wrong variable to
-g_list_remove, meaning that the datum would never be removed from the
-list, even though it had been freed, resulting in a crash.
----
- registryd/deviceeventcontroller.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/registryd/deviceeventcontroller.c b/registryd/deviceeventcontroller.c
-index b8c1bc7..101dc6f 100644
---- a/registryd/deviceeventcontroller.c
-+++ b/registryd/deviceeventcontroller.c
-@@ -1205,7 +1205,7 @@ reset_hung_process_from_ping (DBusPendingCall *pending, void *data)
- if (!strcmp (l->data, data))
- {
- g_free (l->data);
-- hung_processes = g_slist_remove (hung_processes, data);
-+ hung_processes = g_slist_remove (hung_processes, l->data);
- break;
- }
- }
---
-1.8.0
-
diff --git a/app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-hung-crash-2.patch b/app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-hung-crash-2.patch
deleted file mode 100644
index 09234ac61578..000000000000
--- a/app-accessibility/at-spi2-core/files/at-spi2-core-2.6.2-hung-crash-2.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 00c94530c0d57808ac1f9e9b1525341654278ba3 Mon Sep 17 00:00:00 2001
-From: Mike Gorse <mgorse@suse.com>
-Date: Fri, 7 Dec 2012 10:27:58 -0600
-Subject: [PATCH 2/3] Fix another crash when removing hung processes
-
-There was another instance where we were freeing the wrong data.
----
- registryd/deviceeventcontroller.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/registryd/deviceeventcontroller.c b/registryd/deviceeventcontroller.c
-index 101dc6f..b14cd1e 100644
---- a/registryd/deviceeventcontroller.c
-+++ b/registryd/deviceeventcontroller.c
-@@ -1179,7 +1179,7 @@ reset_hung_process (DBusPendingCall *pending, void *data)
- if (!strcmp (l->data, dest))
- {
- g_free (l->data);
-- hung_processes = g_slist_remove (hung_processes, data);
-+ hung_processes = g_slist_remove (hung_processes, l->data);
- break;
- }
- }
---
-1.8.0
-