diff options
-rw-r--r-- | libs/utils/String8.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/utils/String8.cpp b/libs/utils/String8.cpp index 562f026..26cf2ab 100644 --- a/libs/utils/String8.cpp +++ b/libs/utils/String8.cpp @@ -14,6 +14,9 @@ * limitations under the License. */ +#define __STDC_LIMIT_MACROS +#include <stdint.h> + #include <utils/String8.h> #include <utils/Log.h> @@ -79,6 +82,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) { |