Changeset 242873 in webkit
- Timestamp:
- Mar 13, 2019, 2:25:28 AM (7 years ago)
- Location:
- releases/WebKitGTK/webkit-2.24/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.24/Source/WebCore/ChangeLog
r242872 r242873 1 2019-03-13 Miguel Gomez <magomez@igalia.com> 2 3 [CoordinatedGraphics] Null dereference in CoordinatedGraphicsLayer::setCoordinatorIncludingSubLayersIfNeeded 4 https://bugs.webkit.org/show_bug.cgi?id=195615 5 6 Reviewed by Carlos Garcia Campos. 7 8 Exit early if we don't receive a valid coordinator. 9 10 * platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp: 11 (WebCore::CoordinatedGraphicsLayer::setCoordinatorIncludingSubLayersIfNeeded): 12 1 13 2019-03-12 Dean Jackson <dino@apple.com> 2 14 -
releases/WebKitGTK/webkit-2.24/Source/WebCore/platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp
r241120 r242873 979 979 void CoordinatedGraphicsLayer::setCoordinatorIncludingSubLayersIfNeeded(CoordinatedGraphicsLayerClient* coordinator) 980 980 { 981 if ( m_coordinator == coordinator)981 if (!coordinator || m_coordinator == coordinator) 982 982 return; 983 983
Note:
See TracChangeset
for help on using the changeset viewer.