Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
devel:tools
phantomjs
missing-semi-colon.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File missing-semi-colon.patch of Package phantomjs
--- a/src/qt/qtwebkit/Source/WebCore/dom/Document.cpp 2020-09-03 20:10:42.651496056 +0200 +++ b/src/qt/qtwebkit/Source/WebCore/dom/Document.cpp 2020-09-03 21:05:10.509401868 +0200 @@ -3846,12 +3846,12 @@ unsigned i = 0; UChar32 c; - U16_NEXT(characters, i, length, c) + U16_NEXT(characters, i, length, c); if (!isValidNameStart(c)) return false; while (i < length) { - U16_NEXT(characters, i, length, c) + U16_NEXT(characters, i, length, c); if (!isValidNamePart(c)) return false; } @@ -3914,7 +3914,7 @@ const UChar* s = qualifiedName.characters(); for (unsigned i = 0; i < length;) { UChar32 c; - U16_NEXT(s, i, length, c) + U16_NEXT(s, i, length, c); if (c == ':') { if (sawColon) { ec = NAMESPACE_ERR; --- a/src/qt/qtwebkit/Source/WebCore/platform/graphics/SegmentedFontData.cpp 2020-09-03 20:10:58.843604249 +0200 +++ b/src/qt/qtwebkit/Source/WebCore/platform/graphics/SegmentedFontData.cpp 2020-09-03 19:56:49.469929150 +0200 @@ -61,7 +61,7 @@ { UChar32 c; for (int i = 0; i < length; ) { - U16_NEXT(characters, i, length, c) + U16_NEXT(characters, i, length, c); if (!containsCharacter(c)) return false; }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor