1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-05 06:27:37 +00:00

Add g_mutex_unlock() to solve the dump core at exit. I am not sure if it is a

right way to do it, but at least no more crash for now. Later, the correct way
will be come up if I get any respone. Bump the PORTREVISION.
This commit is contained in:
Jeremy Messenger 2005-12-11 06:52:36 +00:00
parent 6fba2e4b6e
commit 956c4ea97f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=150857
2 changed files with 11 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= buoh
PORTVERSION= 0.8.1
PORTREVISION= 1
CATEGORIES= deskutils www gnome
MASTER_SITES= http://buoh.steve-o.org/downloads/

View File

@ -0,0 +1,10 @@
--- src/buoh-comic-loader.c.orig Sun Dec 11 00:25:18 2005
+++ src/buoh-comic-loader.c Sun Dec 11 00:25:39 2005
@@ -184,6 +184,7 @@
}
if (loader->thread_mutex) {
+ g_mutex_unlock (loader->thread_mutex);
g_mutex_free (loader->thread_mutex);
loader->thread_mutex = NULL;
}