This commit is contained in:
ajacoutot 2013-02-01 17:26:15 +00:00
parent df0c9e45b7
commit 9e10c3a9a5
2 changed files with 17 additions and 3 deletions

View File

@ -1,6 +1,4 @@
# $OpenBSD: Makefile,v 1.23 2013/02/01 17:11:59 sthen Exp $
BROKEN= crashes at startup
# $OpenBSD: Makefile,v 1.24 2013/02/01 17:26:15 ajacoutot Exp $
COMMENT= fast and lightweight file manager

View File

@ -0,0 +1,16 @@
$OpenBSD: patch-src_main_c,v 1.1 2013/02/01 17:26:16 ajacoutot Exp $
Make sure we do not unlock an unitialized mutex.
--- src/main.c.orig Fri Feb 1 18:24:33 2013
+++ src/main.c Fri Feb 1 18:24:10 2013
@@ -459,7 +459,9 @@ main ( int argc, char *argv[] )
if( G_LIKELY( main_window || appSettings.showDesktop ) )
{
+ gdk_threads_enter();
gtk_main(); /* if folder windows or desktop icons are showed. */
+ gdk_threads_leave();
}
else
{