summaryrefslogtreecommitdiff
path: root/libutils/String8.cpp
diff options
context:
space:
mode:
authorSergio Giro <sgiro@google.com>2015-08-18 17:15:11 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-08-18 17:15:11 +0000
commit29c1275519ef85fa3f30be351f19dc6e7eedbee9 (patch)
tree9f3d5c21238ab388631036772ba2715cfe1f13b0 /libutils/String8.cpp
parent19f223f3cfe43a4ded903a5d6a5f07bbadf115f5 (diff)
parentebabef275283f771151ec93c17469374b789b2c8 (diff)
Merge "libutils: fix overflow in String8::allocFromUTF8" into mnc-dev
Diffstat (limited to 'libutils/String8.cpp')
-rw-r--r--libutils/String8.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/libutils/String8.cpp b/libutils/String8.cpp
index 3323b82a5..149660231 100644
--- a/libutils/String8.cpp
+++ b/libutils/String8.cpp
@@ -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) {