Title: [201526] trunk/Source/WebCore
Revision
201526
Author
jer.no...@apple.com
Date
2016-05-31 14:44:18 -0700 (Tue, 31 May 2016)

Log Message

Unreviewed build fix; use ASSERT_UNUSED rather than ASSERT to fix release builds.

* platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::MediaPlayerPrivateAVFoundationObjC::removeSession):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (201525 => 201526)


--- trunk/Source/WebCore/ChangeLog	2016-05-31 21:40:18 UTC (rev 201525)
+++ trunk/Source/WebCore/ChangeLog	2016-05-31 21:44:18 UTC (rev 201526)
@@ -1,5 +1,12 @@
 2016-05-31  Jer Noble  <jer.no...@apple.com>
 
+        Unreviewed build fix; use ASSERT_UNUSED rather than ASSERT to fix release builds.
+
+        * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
+        (WebCore::MediaPlayerPrivateAVFoundationObjC::removeSession):
+
+2016-05-31  Jer Noble  <jer.no...@apple.com>
+
         [EME] Sound continues playing when video's src is changed
         https://bugs.webkit.org/show_bug.cgi?id=158233
 

Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm (201525 => 201526)


--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm	2016-05-31 21:40:18 UTC (rev 201525)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm	2016-05-31 21:44:18 UTC (rev 201526)
@@ -2587,7 +2587,7 @@
 
 void MediaPlayerPrivateAVFoundationObjC::removeSession(CDMSession& session)
 {
-    ASSERT(&session == m_session);
+    ASSERT_UNUSED(session, &session == m_session);
     m_session = nullptr;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to