Index: Source/core/svg/SVGPathByteStream.h |
diff --git a/Source/core/svg/SVGPathByteStream.h b/Source/core/svg/SVGPathByteStream.h |
index 1fedc1e11a22853f75748c64a15df7d8027f44cb..35e1bff888c94bb87bf4eb66c7a51dd3e645ef0a 100644 |
--- a/Source/core/svg/SVGPathByteStream.h |
+++ b/Source/core/svg/SVGPathByteStream.h |
@@ -51,7 +51,7 @@ public: |
DataIterator begin() { return m_data.begin(); } |
DataIterator end() { return m_data.end(); } |
void append(unsigned char byte) { m_data.append(byte); } |
- void append(SVGPathByteStream* other) { m_data.append(other->m_data); } |
+ void append(SVGPathByteStream* other) { m_data.appendVector(other->m_data); } |
void clear() { m_data.clear(); } |
void reserveInitialCapacity(size_t size) { m_data.reserveInitialCapacity(size); } |
void shrinkToFit() { m_data.shrinkToFit(); } |