Title: [182062] trunk/Source/WebCore
Revision
182062
Author
commit-qu...@webkit.org
Date
2015-03-27 09:15:39 -0700 (Fri, 27 Mar 2015)

Log Message

Unreviewed, rolling out r177896.
https://bugs.webkit.org/show_bug.cgi?id=142978

Loading libgstclutter.so in-process hangs web process
(Requested by mcatanzaro on #webkit).

Reverted changeset:

"[GStreamer] Disable gst-plugin-scanner if seccomp filters are
enabled"
https://bugs.webkit.org/show_bug.cgi?id=140069
http://trac.webkit.org/changeset/177896

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (182061 => 182062)


--- trunk/Source/WebCore/ChangeLog	2015-03-27 15:29:44 UTC (rev 182061)
+++ trunk/Source/WebCore/ChangeLog	2015-03-27 16:15:39 UTC (rev 182062)
@@ -1,3 +1,18 @@
+2015-03-27  Commit Queue  <commit-qu...@webkit.org>
+
+        Unreviewed, rolling out r177896.
+        https://bugs.webkit.org/show_bug.cgi?id=142978
+
+        Loading libgstclutter.so in-process hangs web process
+        (Requested by mcatanzaro on #webkit).
+
+        Reverted changeset:
+
+        "[GStreamer] Disable gst-plugin-scanner if seccomp filters are
+        enabled"
+        https://bugs.webkit.org/show_bug.cgi?id=140069
+        http://trac.webkit.org/changeset/177896
+
 2015-03-26  Antti Koivisto  <an...@apple.com>
 
         Respect cache-control directives in request

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.cpp (182061 => 182062)


--- trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.cpp	2015-03-27 15:29:44 UTC (rev 182061)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.cpp	2015-03-27 16:15:39 UTC (rev 182062)
@@ -133,14 +133,6 @@
     if (gst_is_initialized())
         return true;
 
-#if ENABLE(SECCOMP_FILTERS)
-    // The gst-plugin-scanner helper binary will receive SIGSYS and dump core
-    // when it attempts to open a file. Disable it so that plugin scanning
-    // occurs in-process. The disadvantage is that a plugin that crashes while
-    // loading will now crash the web process.
-    gst_registry_fork_set_enabled(FALSE);
-#endif
-
     GUniqueOutPtr<GError> error;
     // FIXME: We should probably pass the arguments from the command line.
     bool gstInitialized = gst_init_check(0, 0, &error.outPtr());
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to