Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c4abbcbd authored by Sergio Giro's avatar Sergio Giro Committed by Android Git Automerger
Browse files

am f468d1e1: am 1d44be87: Merge "libutils: fix overflow in String8::allocFromUTF8"

* commit 'f468d1e1':
  libutils: fix overflow in String8::allocFromUTF8
parents c52f66b5 f468d1e1
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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) {