Title: [282033] branches/safari-611.4.1.0-branch/Source/WebCore
Revision
282033
Author
alanc...@apple.com
Date
2021-09-03 15:34:31 -0700 (Fri, 03 Sep 2021)

Log Message

Cherry-pick r279832. rdar://problem/82733433

    Unreviewed, partial revert of r279661 to address crashes on iOS Debug.

    * page/DOMWindow.cpp:
    (WebCore::DOMWindow::removeAllEventListeners):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@279832 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-611.4.1.0-branch/Source/WebCore/ChangeLog (282032 => 282033)


--- branches/safari-611.4.1.0-branch/Source/WebCore/ChangeLog	2021-09-03 22:34:26 UTC (rev 282032)
+++ branches/safari-611.4.1.0-branch/Source/WebCore/ChangeLog	2021-09-03 22:34:31 UTC (rev 282033)
@@ -1,5 +1,23 @@
 2021-09-03  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r279832. rdar://problem/82733433
+
+    Unreviewed, partial revert of r279661 to address crashes on iOS Debug.
+    
+    * page/DOMWindow.cpp:
+    (WebCore::DOMWindow::removeAllEventListeners):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@279832 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2021-07-12  Chris Dumez  <cdu...@apple.com>
+
+            Unreviewed, partial revert of r279661 to address crashes on iOS Debug.
+
+            * page/DOMWindow.cpp:
+            (WebCore::DOMWindow::removeAllEventListeners):
+
+2021-09-03  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r279661. rdar://problem/82733433
 
     Deploy smart pointers in DOMWindow

Modified: branches/safari-611.4.1.0-branch/Source/WebCore/page/DOMWindow.cpp (282032 => 282033)


--- branches/safari-611.4.1.0-branch/Source/WebCore/page/DOMWindow.cpp	2021-09-03 22:34:26 UTC (rev 282032)
+++ branches/safari-611.4.1.0-branch/Source/WebCore/page/DOMWindow.cpp	2021-09-03 22:34:31 UTC (rev 282033)
@@ -2300,7 +2300,7 @@
 #endif
 
 #if ENABLE(TOUCH_EVENTS)
-    if (RefPtr document = this->document())
+    if (auto* document = this->document())
         document->didRemoveEventTargetNode(*document);
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to