Title: [139732] trunk
Revision
139732
Author
tom...@google.com
Date
2013-01-15 02:45:04 -0800 (Tue, 15 Jan 2013)

Log Message

MediaStream API: Fixing crashing bug in MediaStream
https://bugs.webkit.org/show_bug.cgi?id=106886

Reviewed by Eric Seidel.

Source/WebCore:

Fixing crashing bug during destruction.

No new tests needed.

* Modules/mediastream/MediaStream.cpp:
(WebCore::MediaStream::contextDestroyed):

LayoutTests:

Removing obsolete exception.

* platform/chromium/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (139731 => 139732)


--- trunk/LayoutTests/ChangeLog	2013-01-15 10:01:57 UTC (rev 139731)
+++ trunk/LayoutTests/ChangeLog	2013-01-15 10:45:04 UTC (rev 139732)
@@ -1,3 +1,14 @@
+2013-01-15  Tommy Widenflycht  <tom...@google.com>
+
+        MediaStream API: Fixing crashing bug in MediaStream
+        https://bugs.webkit.org/show_bug.cgi?id=106886
+
+        Reviewed by Eric Seidel.
+
+        Removing obsolete exception.
+
+        * platform/chromium/TestExpectations:
+
 2013-01-15  Szilard Ledan  <szle...@inf.u-szeged.hu>
 
         [Qt] Gardening

Modified: trunk/LayoutTests/platform/chromium/TestExpectations (139731 => 139732)


--- trunk/LayoutTests/platform/chromium/TestExpectations	2013-01-15 10:01:57 UTC (rev 139731)
+++ trunk/LayoutTests/platform/chromium/TestExpectations	2013-01-15 10:45:04 UTC (rev 139732)
@@ -4366,5 +4366,4 @@
 
 webkit.org/b/106833 fast/borders/outline-alpha-inline.html [ Pass ImageOnlyFailure ]
 webkit.org/b/106858 [ SnowLeopard Debug ] scrollingcoordinator/non-fast-scrollable-region-transformed-iframe.html [ ImageOnlyFailure ]
-webkit.org/b/106869 [ Lion Debug ] fast/mediastream/RTCPeerConnection-events.html [ Crash ]
 webkit.org/b/106875 [ XP ] svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource.html [ ImageOnlyFailure ]

Modified: trunk/Source/WebCore/ChangeLog (139731 => 139732)


--- trunk/Source/WebCore/ChangeLog	2013-01-15 10:01:57 UTC (rev 139731)
+++ trunk/Source/WebCore/ChangeLog	2013-01-15 10:45:04 UTC (rev 139732)
@@ -1,3 +1,17 @@
+2013-01-15  Tommy Widenflycht  <tom...@google.com>
+
+        MediaStream API: Fixing crashing bug in MediaStream
+        https://bugs.webkit.org/show_bug.cgi?id=106886
+
+        Reviewed by Eric Seidel.
+
+        Fixing crashing bug during destruction.
+
+        No new tests needed.
+
+        * Modules/mediastream/MediaStream.cpp:
+        (WebCore::MediaStream::contextDestroyed):
+
 2013-01-15  Allan Sandfeld Jensen  <allan.jen...@digia.com>
 
         [Qt][CSS Shaders] Make custom filter render in Wk1 mode

Modified: trunk/Source/WebCore/Modules/mediastream/MediaStream.cpp (139731 => 139732)


--- trunk/Source/WebCore/Modules/mediastream/MediaStream.cpp	2013-01-15 10:01:57 UTC (rev 139731)
+++ trunk/Source/WebCore/Modules/mediastream/MediaStream.cpp	2013-01-15 10:45:04 UTC (rev 139732)
@@ -231,6 +231,7 @@
 
 void MediaStream::contextDestroyed()
 {
+    ContextDestructionObserver::contextDestroyed();
     m_stopped = true;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to