aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkUtils.cpp
diff options
context:
space:
mode:
authorGravatar Ben Wagner <bungeman@google.com>2018-07-18 14:10:30 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-07-18 18:51:32 +0000
commit0afc75e7548bcb623132afa7cf7c8df179359151 (patch)
treeb8fc8769418fafeb3aee7c976ea172730ae9a569 /src/core/SkUtils.cpp
parent715d08c381b4cc8af33d7dcdefc9533dcc97e4c9 (diff)
SkUTF16_CountUnichars to error instead of assert.
Update SkUTF16_CountUnichars to return -1 on invalid input instead of simply asserting in debug. This also removes the unneeded checks for zero length input. This also updates SkPaintPriv::ValidCountText and its documentation to reflect the reality that it returns -1 on invalid data. Bug: skia:8156 Change-Id: Ief227b7dec9d1e823b93e9061558f8412791fc09 Reviewed-on: https://skia-review.googlesource.com/142168 Reviewed-by: Hal Canary <halcanary@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
Diffstat (limited to 'src/core/SkUtils.cpp')
-rw-r--r--src/core/SkUtils.cpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/core/SkUtils.cpp b/src/core/SkUtils.cpp
index c12bac50ff..f0c1f60a09 100644
--- a/src/core/SkUtils.cpp
+++ b/src/core/SkUtils.cpp
@@ -86,10 +86,6 @@ int SkUTF8_CountUnichars(const char utf8[]) {
int SkUTF8_CountUnichars(const void* text, size_t byteLength) {
SkASSERT(text);
const char* utf8 = static_cast<const char*>(text);
- if (byteLength == 0) {
- return 0;
- }
-
int count = 0;
const char* stop = utf8 + byteLength;
@@ -262,9 +258,6 @@ int SkUTF16_CountUnichars(const uint16_t src[]) {
// returns -1 on error
int SkUTF16_CountUnichars(const void* text, size_t byteLength) {
SkASSERT(text);
- if (byteLength == 0) {
- return 0;
- }
if (!SkIsAlign2(intptr_t(text)) || !SkIsAlign2(byteLength)) {
return -1;
}
@@ -274,7 +267,9 @@ int SkUTF16_CountUnichars(const void* text, size_t byteLength) {
int count = 0;
while (src < stop) {
unsigned c = *src++;
- SkASSERT(!SkUTF16_IsLowSurrogate(c));
+ if (SkUTF16_IsLowSurrogate(c)) {
+ return -1;
+ }
if (SkUTF16_IsHighSurrogate(c)) {
if (src >= stop) {
return -1;
@@ -405,9 +400,6 @@ size_t SkUTF16_ToUTF8(const uint16_t utf16[], int numberOf16BitValues,
// returns -1 on error
int SkUTF32_CountUnichars(const void* text, size_t byteLength) {
- if (byteLength == 0) {
- return 0;
- }
if (!SkIsAlign4(intptr_t(text)) || !SkIsAlign4(byteLength)) {
return -1;
}