Merge "DO NOT MERGE - Merge RP1A.201005.006"

This commit is contained in:
Xin Li 2020-10-06 20:17:27 +00:00 committed by Gerrit Code Review
commit 9602e3d31a
1 changed files with 7 additions and 1 deletions

View File

@ -309,8 +309,14 @@ status_t String8::appendFormatV(const char* fmt, va_list args)
n = vsnprintf(nullptr, 0, fmt, tmp_args);
va_end(tmp_args);
if (n != 0) {
if (n < 0) return UNKNOWN_ERROR;
if (n > 0) {
size_t oldLength = length();
if ((size_t)n > SIZE_MAX - 1 ||
oldLength > SIZE_MAX - (size_t)n - 1) {
return NO_MEMORY;
}
char* buf = lockBuffer(oldLength + n);
if (buf) {
vsnprintf(buf + oldLength, n + 1, fmt, args);