diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-05-09 15:17:35 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-05-09 15:17:35 +0200 |
commit | 7059e4e133b62f5ad3339d51966f226089532710 (patch) | |
tree | 94f3124e189d4329f7ee52ff69fd6619754bcafe /lib/unicode/string | |
parent | 6cd517eee582d797d766f3ed8dfbfb8c107eed7c (diff) |
Try to do better error handling with custom allocators
Diffstat (limited to 'lib/unicode/string')
-rw-r--r-- | lib/unicode/string/u8casefold.c | 2 | ||||
-rw-r--r-- | lib/unicode/string/u8lower.c | 2 | ||||
-rw-r--r-- | lib/unicode/string/u8title.c | 2 | ||||
-rw-r--r-- | lib/unicode/string/u8upper.c | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/lib/unicode/string/u8casefold.c b/lib/unicode/string/u8casefold.c index eff1e48..b4afe50 100644 --- a/lib/unicode/string/u8casefold.c +++ b/lib/unicode/string/u8casefold.c @@ -20,8 +20,6 @@ u8casefold(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, } char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, alignof(char8_t)); - if (dst == nullptr) - return nullptr; rune ch; size_t n = 0; diff --git a/lib/unicode/string/u8lower.c b/lib/unicode/string/u8lower.c index d5eb58c..45309b6 100644 --- a/lib/unicode/string/u8lower.c +++ b/lib/unicode/string/u8lower.c @@ -47,8 +47,6 @@ u8lower(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, } char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, alignof(char8_t)); - if (dst == nullptr) - return nullptr; while (u8next(&ch, &sv)) { rune next = 0; diff --git a/lib/unicode/string/u8title.c b/lib/unicode/string/u8title.c index 0c3620e..5710920 100644 --- a/lib/unicode/string/u8title.c +++ b/lib/unicode/string/u8title.c @@ -53,8 +53,6 @@ u8title(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, } char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, alignof(char8_t)); - if (dst == nullptr) - return nullptr; while (u8next(&ch, &sv)) { if (sv.p > word.p + word.len) { diff --git a/lib/unicode/string/u8upper.c b/lib/unicode/string/u8upper.c index df25ee7..91ae679 100644 --- a/lib/unicode/string/u8upper.c +++ b/lib/unicode/string/u8upper.c @@ -26,8 +26,6 @@ u8upper(size_t *dstn, struct u8view sv, enum caseflags flags, alloc_fn alloc, } char8_t *dst = alloc(alloc_ctx, nullptr, 0, bufsz, alignof(char8_t)); - if (dst == nullptr) - return nullptr; rune ch; size_t n = 0; |