Index: third_party/WebKit/Source/wtf/text/StringBuilder.h |
diff --git a/third_party/WebKit/Source/wtf/text/StringBuilder.h b/third_party/WebKit/Source/wtf/text/StringBuilder.h |
index d0df734bca7c38beef39763b48018b7a0cb0b9eb..ba58742831c72491f5eb3b1adb1935c07025b386 100644 |
--- a/third_party/WebKit/Source/wtf/text/StringBuilder.h |
+++ b/third_party/WebKit/Source/wtf/text/StringBuilder.h |
@@ -144,8 +144,9 @@ public: |
m_bufferCharacters8[m_length++] = c; |
else |
m_bufferCharacters16[m_length++] = c; |
- } else |
+ } else { |
append(&c, 1); |
+ } |
} |
void append(char c) |