]> git.sesse.net Git - vlc/commitdiff
Work around cleanup handler bug in kfile plugin
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 27 Mar 2010 14:20:28 +0000 (16:20 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 27 Mar 2010 14:32:00 +0000 (16:32 +0200)
Parental advisory: explicit hack.

If kfilemodule is loaded, bypass run cleanup handlers. Library really
should not use this C feature in any case (IMHO). And I find it
outright idiotic for a (Qt4) plugin to use cleanup handlers.
This is causing so many crash reports that it's not funny anymore:
https://bugs.launchpad.net/ubuntu/+source/vlc/+bug/408719

bin/Makefile.am
bin/vlc.c

index 2bb42944ff6e31f984e436cc0a7643f36eb20a1d..69e3773a65004030d493bab466a6b5cf6e07a90a 100644 (file)
@@ -46,6 +46,8 @@ vlc_static_LDFLAGS = $(vlc_LDFLAGS) -no-install -static
 if HAVE_WIN32
 vlc_LDADD += -lwininet vlc_win32_rc.$(OBJEXT)
 vlc_DEPENDENCIES += vlc_win32_rc.$(OBJEXT)
+else
+vlc_LDADD += -ldl
 endif
 
 .rc.in.rc: $(top_builddir)/config.status
index 182a7edc6c3af332c45cc7a21330e3e2ca7e150a..1c64656a23377d4ec67ec4451b1c7250a7feb605 100644 (file)
--- a/bin/vlc.c
+++ b/bin/vlc.c
@@ -47,6 +47,7 @@ extern char *FromLocale (const char *);
 #include <time.h>
 #include <pthread.h>
 #include <unistd.h>
+#include <dlfcn.h>
 
 /*****************************************************************************
  * main: parse command line, start interface and spawn threads.
@@ -172,5 +173,14 @@ int main( int i_argc, const char *ppsz_argv[] )
     for (int i = 1; i < argc; i++)
         LocaleFree (argv[i]);
 
+#ifdef RTLD_NOLOAD
+    /* Avoid crash in KIO scheduler cleanup. */
+    /* This is ugly, but we get way too many crash reports due to this. */
+    if (dlopen ("libkfilemodule.so", RTLD_LAZY|RTLD_LOCAL|RTLD_NOLOAD) != NULL)
+    {
+        fprintf (stderr, "KFile plugin present. Unclean shutdown!\n");
+        _exit (0);
+    }
+#endif
     return 0;
 }