Title: [260516] trunk/Source/WebKit
Revision
260516
Author
[email protected]
Date
2020-04-22 09:31:32 -0700 (Wed, 22 Apr 2020)

Log Message

Switch from debug ASSERT to RELEASE_ASSERT in toNPJSObject
https://bugs.webkit.org/show_bug.cgi?id=210823
<rdar://problem/61774056>

Reviewed by David Kilzer.

* WebProcess/Plugins/Netscape/NPJSObject.h:
(WebKit::NPJSObject::toNPJSObject):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (260515 => 260516)


--- trunk/Source/WebKit/ChangeLog	2020-04-22 16:22:38 UTC (rev 260515)
+++ trunk/Source/WebKit/ChangeLog	2020-04-22 16:31:32 UTC (rev 260516)
@@ -1,3 +1,14 @@
+2020-04-22  Brent Fulgham  <[email protected]>
+
+        Switch from debug ASSERT to RELEASE_ASSERT in toNPJSObject
+        https://bugs.webkit.org/show_bug.cgi?id=210823
+        <rdar://problem/61774056>
+
+        Reviewed by David Kilzer.
+
+        * WebProcess/Plugins/Netscape/NPJSObject.h:
+        (WebKit::NPJSObject::toNPJSObject):
+
 2020-04-22  Youenn Fablet  <[email protected]>
 
         Simplify SWServerWorker::whenActivated logic

Modified: trunk/Source/WebKit/WebProcess/Plugins/Netscape/NPJSObject.h (260515 => 260516)


--- trunk/Source/WebKit/WebProcess/Plugins/Netscape/NPJSObject.h	2020-04-22 16:22:38 UTC (rev 260515)
+++ trunk/Source/WebKit/WebProcess/Plugins/Netscape/NPJSObject.h	2020-04-22 16:31:32 UTC (rev 260516)
@@ -56,7 +56,7 @@
 
     static NPJSObject* toNPJSObject(NPObject* npObject)
     {
-        ASSERT_WITH_SECURITY_IMPLICATION(isNPJSObject(npObject));
+        RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(isNPJSObject(npObject));
         return static_cast<NPJSObject*>(npObject);
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to