summaryrefslogtreecommitdiffstats
path: root/libcutils/strdup8to16.c
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-13 13:04:37 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-13 13:04:37 -0700
commite037fd7e193ecccbb5c0888e49f6d58c224bc11d (patch)
tree3936f402311799c99169f8e1d6bf168a2d48f1a9 /libcutils/strdup8to16.c
parent2015549667fb77706a9879e974a3875ebccd8198 (diff)
downloadsystem_core-e037fd7e193ecccbb5c0888e49f6d58c224bc11d.zip
system_core-e037fd7e193ecccbb5c0888e49f6d58c224bc11d.tar.gz
system_core-e037fd7e193ecccbb5c0888e49f6d58c224bc11d.tar.bz2
auto import from //branches/cupcake_rel/...@138607
Diffstat (limited to 'libcutils/strdup8to16.c')
-rw-r--r--libcutils/strdup8to16.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libcutils/strdup8to16.c b/libcutils/strdup8to16.c
index 8654b04..63e5ca4 100644
--- a/libcutils/strdup8to16.c
+++ b/libcutils/strdup8to16.c
@@ -18,6 +18,7 @@
#include <cutils/jstring.h>
#include <assert.h>
#include <stdlib.h>
+#include <limits.h>
/* See http://www.unicode.org/reports/tr22/ for discussion
* on invalid sequences
@@ -48,6 +49,10 @@ extern char16_t * strdup8to16 (const char* s, size_t *out_len)
len = strlen8to16(s);
+ // fail on overflow
+ if (len && SIZE_MAX/len < sizeof(char16_t))
+ return NULL;
+
// no plus-one here. UTF-16 strings are not null terminated
ret = (char16_t *) malloc (sizeof(char16_t) * len);