summaryrefslogtreecommitdiffstats
path: root/x11/yelp/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2008-09-12 08:30:18 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2008-09-12 08:30:18 +0800
commitf38fa284229e9532be1da433fc6d3d7e798172e4 (patch)
treec0aba71494b8da7c45cd6793485bdb1a1ab2787f /x11/yelp/files
parent381da41b3aefdd70b32a6c320725f86db8ce215c (diff)
downloadmarcuscom-ports-f38fa284229e9532be1da433fc6d3d7e798172e4.tar
marcuscom-ports-f38fa284229e9532be1da433fc6d3d7e798172e4.tar.gz
marcuscom-ports-f38fa284229e9532be1da433fc6d3d7e798172e4.tar.bz2
marcuscom-ports-f38fa284229e9532be1da433fc6d3d7e798172e4.tar.lz
marcuscom-ports-f38fa284229e9532be1da433fc6d3d7e798172e4.tar.xz
marcuscom-ports-f38fa284229e9532be1da433fc6d3d7e798172e4.tar.zst
marcuscom-ports-f38fa284229e9532be1da433fc6d3d7e798172e4.zip
Fix an abort crash due to a race condition. This crash seems quite
prevalent on FreeBSD, and really makes using help difficult. See http://bugzilla.gnome.org/show_bug.cgi?id=551757 for more details. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@11523 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/yelp/files')
-rw-r--r--x11/yelp/files/patch-src_yelp-document.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/x11/yelp/files/patch-src_yelp-document.c b/x11/yelp/files/patch-src_yelp-document.c
new file mode 100644
index 000000000..a3dd9289d
--- /dev/null
+++ b/x11/yelp/files/patch-src_yelp-document.c
@@ -0,0 +1,16 @@
+--- src/yelp-document.c.orig 2008-09-11 20:20:59.000000000 -0400
++++ src/yelp-document.c 2008-09-11 20:20:40.000000000 -0400
+@@ -748,6 +749,13 @@ request_idle_final (YelpDocument *docume
+ priv = document->priv;
+
+ g_mutex_lock (priv->mutex);
++
++ if (priv->reqs_pending == NULL) {
++ /*
++ Time to bail as we shouldn't be here anyway.
++ */
++ return FALSE;
++ }
+
+ for (cur = priv->reqs_pending; cur; cur = cur->next) {
+ request = cur->data;