Title: [278316] trunk/Source/WebCore
Revision
278316
Author
[email protected]
Date
2021-06-01 11:50:17 -0700 (Tue, 01 Jun 2021)

Log Message

[EME][Thunder] Build broken since r278244
https://bugs.webkit.org/show_bug.cgi?id=226498

Patch by Philippe Normand <[email protected]> on 2021-06-01
Reviewed by Alex Christensen.

* platform/graphics/gstreamer/eme/CDMThunder.cpp:
(WebCore::CDMInstanceSessionThunder::cdmInstanceThunder const): Cast raw pointer instead of
its smart pointer container.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (278315 => 278316)


--- trunk/Source/WebCore/ChangeLog	2021-06-01 18:14:29 UTC (rev 278315)
+++ trunk/Source/WebCore/ChangeLog	2021-06-01 18:50:17 UTC (rev 278316)
@@ -1,3 +1,14 @@
+2021-06-01  Philippe Normand  <[email protected]>
+
+        [EME][Thunder] Build broken since r278244
+        https://bugs.webkit.org/show_bug.cgi?id=226498
+
+        Reviewed by Alex Christensen.
+
+        * platform/graphics/gstreamer/eme/CDMThunder.cpp:
+        (WebCore::CDMInstanceSessionThunder::cdmInstanceThunder const): Cast raw pointer instead of
+        its smart pointer container.
+
 2021-06-01  Antti Koivisto  <[email protected]>
 
         Rename InlineBox to LegacyInlineBox

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/eme/CDMThunder.cpp (278315 => 278316)


--- trunk/Source/WebCore/platform/graphics/gstreamer/eme/CDMThunder.cpp	2021-06-01 18:14:29 UTC (rev 278315)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/eme/CDMThunder.cpp	2021-06-01 18:50:17 UTC (rev 278316)
@@ -675,7 +675,8 @@
 
 CDMInstanceThunder* CDMInstanceSessionThunder::cdmInstanceThunder() const
 {
-    return static_cast<CDMInstanceThunder*>(cdmInstanceProxy());
+    auto proxy = cdmInstanceProxy();
+    return static_cast<CDMInstanceThunder*>(proxy.get());
 }
 
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to