| Index: Source/wtf/text/CString.cpp
|
| diff --git a/Source/wtf/text/CString.cpp b/Source/wtf/text/CString.cpp
|
| index 89ee0a34f9205bd287d854e6ee8d32e3f03eaf8a..e46a55de424b78e484366201b5cbeefc1b435a8f 100644
|
| --- a/Source/wtf/text/CString.cpp
|
| +++ b/Source/wtf/text/CString.cpp
|
| @@ -41,13 +41,13 @@ PassRefPtr<CStringBuffer> CStringBuffer::createUninitialized(size_t length)
|
|
|
| // The +1 is for the terminating NUL character.
|
| size_t size = sizeof(CStringBuffer) + length + 1;
|
| - CStringBuffer* stringBuffer = static_cast<CStringBuffer*>(partitionAllocGeneric(Partitions::getBufferPartition(), size));
|
| + CStringBuffer* stringBuffer = static_cast<CStringBuffer*>(partitionAllocGeneric(Partitions::bufferPartition(), size));
|
| return adoptRef(new (stringBuffer) CStringBuffer(length));
|
| }
|
|
|
| void CStringBuffer::operator delete(void* ptr)
|
| {
|
| - partitionFreeGeneric(Partitions::getBufferPartition(), ptr);
|
| + partitionFreeGeneric(Partitions::bufferPartition(), ptr);
|
| }
|
|
|
| CString::CString(const char* str)
|
|
|