Changeset 90908 in webkit
- Timestamp:
- Jul 13, 2011, 5:54:52 AM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
rendering/InlineTextBox.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r90904 r90908 1 2011-07-13 Nikolas Zimmermann <nzimmermann@rim.com> 2 3 Regression: OOB read in svg text run 4 https://bugs.webkit.org/show_bug.cgi?id=63627 5 6 Not reviewed. 7 8 Fixed last minute typo leading to assertions. 9 10 * rendering/InlineTextBox.cpp: 11 (WebCore::InlineTextBox::paintSelection): 12 1 13 2011-07-12 Andrey Kosyakov <caseq@chromium.org> 2 14 -
trunk/Source/WebCore/rendering/InlineTextBox.cpp
r90901 r90908 818 818 BufferForAppendingHyphen charactersWithHyphen; 819 819 bool respectHyphen = ePos == length && hasHyphen(); 820 TextRun textRun = constructTextRun(style, font, characters, length, textRenderer()->textLength() - length, respectHyphen ? &charactersWithHyphen : 0);820 TextRun textRun = constructTextRun(style, font, characters, length, textRenderer()->textLength() - m_start, respectHyphen ? &charactersWithHyphen : 0); 821 821 if (respectHyphen) 822 822 ePos = textRun.length();
Note:
See TracChangeset
for help on using the changeset viewer.