commit | 29c1275519ef85fa3f30be351f19dc6e7eedbee9 | [log] [tgz] |
---|---|---|
author | Sergio Giro <sgiro@google.com> | Tue Aug 18 17:15:11 2015 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Tue Aug 18 17:15:11 2015 +0000 |
tree | 9f3d5c21238ab388631036772ba2715cfe1f13b0 | |
parent | 19f223f3cfe43a4ded903a5d6a5f07bbadf115f5 [diff] | |
parent | ebabef275283f771151ec93c17469374b789b2c8 [diff] |
Merge "libutils: fix overflow in String8::allocFromUTF8" into mnc-dev
diff --git a/libutils/String8.cpp b/libutils/String8.cpp index 3323b82..1496602 100644 --- a/libutils/String8.cpp +++ b/libutils/String8.cpp
@@ -78,6 +78,9 @@ 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) {