WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
146317
[Mac] Crash in WebCore::MediaPlayer::canPlayToWirelessPlaybackTarget
https://bugs.webkit.org/show_bug.cgi?id=146317
Summary
[Mac] Crash in WebCore::MediaPlayer::canPlayToWirelessPlaybackTarget
Eric Carlson
Reported
2015-06-25 09:39:37 PDT
Missing a NULL check.
Attachments
Proposed patch.
(1.61 KB, patch)
2015-06-25 09:42 PDT
,
Eric Carlson
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Eric Carlson
Comment 1
2015-06-25 09:39:57 PDT
<
rdar://problem/21356176
>
Eric Carlson
Comment 2
2015-06-25 09:42:21 PDT
Created
attachment 255560
[details]
Proposed patch.
Brent Fulgham
Comment 3
2015-06-25 12:39:04 PDT
Comment on
attachment 255560
[details]
Proposed patch. View in context:
https://bugs.webkit.org/attachment.cgi?id=255560&action=review
r=me
> Source/WebCore/html/HTMLMediaElement.cpp:6320 > + if (m_player && m_hasPlaybackTargetAvailabilityListeners && !m_mediaSession->wirelessVideoPlaybackDisabled(*this) && m_player->canPlayToWirelessPlaybackTarget())
I wonder if m_mediaSession can ever be null?
Eric Carlson
Comment 4
2015-06-25 13:36:13 PDT
(In reply to
comment #3
)
> Comment on
attachment 255560
[details]
> Proposed patch. > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=255560&action=review
> > r=me > > > Source/WebCore/html/HTMLMediaElement.cpp:6320 > > + if (m_player && m_hasPlaybackTargetAvailabilityListeners && !m_mediaSession->wirelessVideoPlaybackDisabled(*this) && m_player->canPlayToWirelessPlaybackTarget()) > > I wonder if m_mediaSession can ever be null?
No, it is a std::unique_ptr<> that is allocated in the constructor.
Eric Carlson
Comment 5
2015-06-25 14:01:57 PDT
Committed
r185962
:
https://trac.webkit.org/r185962
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug