| Index: third_party/WebKit/Source/core/html/TimeRanges.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/TimeRanges.cpp b/third_party/WebKit/Source/core/html/TimeRanges.cpp
|
| index 6864d06acc8595a026bbd38007d2caa602d6fbb9..5f278deb00d197ff907ed183e8b8c8c1ff434d70 100644
|
| --- a/third_party/WebKit/Source/core/html/TimeRanges.cpp
|
| +++ b/third_party/WebKit/Source/core/html/TimeRanges.cpp
|
| @@ -72,7 +72,7 @@ void TimeRanges::invert() {
|
| for (size_t index = 0; index + 1 < m_ranges.size(); ++index)
|
| inverted->add(m_ranges[index].m_end, m_ranges[index + 1].m_start);
|
|
|
| - double end = m_ranges.last().m_end;
|
| + double end = m_ranges.back().m_end;
|
| if (end != posInf)
|
| inverted->add(end, posInf);
|
| }
|
|
|