Unbreak.
This commit is contained in:
parent
df0c9e45b7
commit
9e10c3a9a5
@ -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
|
||||
|
||||
|
16
x11/pcmanfm/patches/patch-src_main_c
Normal file
16
x11/pcmanfm/patches/patch-src_main_c
Normal 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
|
||||
{
|
Loading…
x
Reference in New Issue
Block a user