Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:Guillaume_G:WSL
mingw64-webkitgtk
fix.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File fix.patch of Package mingw64-webkitgtk
diff -ru a/Source/WebCore/dom/Document.cpp b/Source/WebCore/dom/Document.cpp --- a/Source/WebCore/dom/Document.cpp 2016-04-10 09:48:37.000000000 +0300 +++ b/Source/WebCore/dom/Document.cpp 2019-10-06 22:14:43.062671267 +0300 @@ -3912,12 +3912,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; } @@ -3980,7 +3980,7 @@ const UChar* s = qualifiedName.deprecatedCharacters(); 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; diff -ru a/Source/WebCore/platform/graphics/SegmentedFontData.cpp b/Source/WebCore/platform/graphics/SegmentedFontData.cpp --- a/Source/WebCore/platform/graphics/SegmentedFontData.cpp 2016-04-10 09:48:37.000000000 +0300 +++ b/Source/WebCore/platform/graphics/SegmentedFontData.cpp 2019-10-06 21:27:03.675406453 +0300 @@ -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