Skip to content
Snippets Groups Projects
Commit 4956c0fe authored by Sergio Giro's avatar Sergio Giro Committed by Android Git Automerger
Browse files

am 5b85b1d4: libutils: fix overflow in String8::allocFromUTF8

* commit '5b85b1d4':
  libutils: fix overflow in String8::allocFromUTF8
parents e8582d65 5b85b1d4
No related branches found
No related tags found
No related merge requests found
......@@ -78,6 +78,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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment