am 1d44be87: Merge "libutils: fix overflow in String8::allocFromUTF8"
* commit '1d44be87ffdc5e3bc074ab68200bff9d32c60d3a': libutils: fix overflow in String8::allocFromUTF8
This commit is contained in:
commit
f468d1e14c
1 changed files with 3 additions and 0 deletions
|
|
@ -79,6 +79,9 @@ void terminate_string8()
|
|||
static char* allocFromUTF8(const char* in, size_t len)
|
||||
{
|
||||
if (len > 0) {
|
||||
if (len == SIZE_MAX) {
|
||||
return NULL;
|
||||
}
|
||||
SharedBuffer* buf = SharedBuffer::alloc(len+1);
|
||||
ALOG_ASSERT(buf, "Unable to allocate shared buffer");
|
||||
if (buf) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue