Merge "Fix memory leak in String16"

This commit is contained in:
Treehugger Robot 2019-10-01 23:17:30 +00:00 committed by Gerrit Code Review
commit 9a66161585
1 changed files with 0 additions and 2 deletions

View File

@ -346,7 +346,6 @@ void* String16::edit() {
if (isStaticString()) {
buf = static_cast<SharedBuffer*>(alloc((size() + 1) * sizeof(char16_t)));
if (buf) {
buf->acquire();
memcpy(buf->data(), mString, (size() + 1) * sizeof(char16_t));
}
} else {
@ -365,7 +364,6 @@ void* String16::editResize(size_t newSize) {
}
buf = static_cast<SharedBuffer*>(alloc(newSize));
if (buf) {
buf->acquire();
memcpy(buf->data(), mString, copySize);
}
} else {