aboutsummaryrefslogtreecommitdiff
path: root/testing/webkit2gtk/patches/u16-fix.patch
blob: 5ce7d9ae857b8180f91058de9a8889e6e28ebcd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
--- webkitgtk-2.26.2/Source/WTF/wtf/URLHelpers.cpp
+++ webkitgtk-2.26.2-patched/Source/WTF/wtf/URLHelpers.cpp
@@ -301,7 +301,7 @@
     Optional<UChar32> previousCodePoint;
     while (i < length) {
         UChar32 c;
-        U16_NEXT(buffer, i, length, c)
+        U16_NEXT(buffer, i, length, c);
         UErrorCode error = U_ZERO_ERROR;
         UScriptCode script = uscript_getScript(c, &error);
         if (error != U_ZERO_ERROR) {
--- webkitgtk-2.26.2/Source/WebCore/dom/Document.cpp
+++ webkitgtk-2.26.2-patched/Source/WebCore/dom/Document.cpp
@@ -4944,12 +4944,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;
     }
@@ -5009,7 +5009,7 @@
 
     for (unsigned i = 0; i < length; ) {
         UChar32 c;
-        U16_NEXT(qualifiedName, i, length, c)
+        U16_NEXT(qualifiedName, i, length, c);
         if (c == ':') {
             if (sawColon)
                 return Exception { InvalidCharacterError };