From 7059e4e133b62f5ad3339d51966f226089532710 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 9 May 2024 15:17:35 +0200 Subject: Try to do better error handling with custom allocators --- lib/unicode/string/u8casefold.c | 2 -- lib/unicode/string/u8lower.c | 2 -- lib/unicode/string/u8title.c | 2 -- lib/unicode/string/u8upper.c | 2 -- 4 files changed, 8 deletions(-) (limited to 'lib/unicode/string') 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; -- cgit v1.2.3