diff options
Diffstat (limited to 'libutils/String8.cpp')
-rw-r--r-- | libutils/String8.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libutils/String8.cpp b/libutils/String8.cpp index 771d31266..ad4528291 100644 --- a/libutils/String8.cpp +++ b/libutils/String8.cpp @@ -362,7 +362,7 @@ status_t String8::appendFormatV(const char* fmt, va_list args) status_t String8::real_append(const char* other, size_t otherLen) { const size_t myLen = bytes(); - + SharedBuffer* buf = SharedBuffer::bufferFromData(mString) ->editResize(myLen+otherLen+1); if (buf) { |