Changeset 241479 in webkit


Ignore:
Timestamp:
Feb 13, 2019 2:59:08 PM (5 years ago)
Author:
jer.noble@apple.com
Message:

Null-deref crash at SourceBufferPrivateAVFObjC::outputObscuredDueToInsufficientExternalProtectionChanged()
https://bugs.webkit.org/show_bug.cgi?id=194613
<rdar://problem/48023912>

Reviewed by Eric Carlson.

  • platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm:

(WebCore::SourceBufferPrivateAVFObjC::outputObscuredDueToInsufficientExternalProtectionChanged):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r241472 r241479  
     12019-02-13  Jer Noble  <jer.noble@apple.com>
     2
     3        Null-deref crash at SourceBufferPrivateAVFObjC::outputObscuredDueToInsufficientExternalProtectionChanged()
     4        https://bugs.webkit.org/show_bug.cgi?id=194613
     5        <rdar://problem/48023912>
     6
     7        Reviewed by Eric Carlson.
     8
     9        * platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm:
     10        (WebCore::SourceBufferPrivateAVFObjC::outputObscuredDueToInsufficientExternalProtectionChanged):
     11
    1122019-02-13  Michael Catanzaro  <mcatanzaro@igalia.com>
    213
  • trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm

    r241148 r241479  
    10321032{
    10331033#if ENABLE(ENCRYPTED_MEDIA) && HAVE(AVCONTENTKEYSESSION)
    1034     if (m_mediaSource->cdmInstance()) {
     1034    if (m_mediaSource && m_mediaSource->cdmInstance()) {
    10351035        m_mediaSource->outputObscuredDueToInsufficientExternalProtectionChanged(obscured);
    10361036        return;
Note: See TracChangeset for help on using the changeset viewer.