diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-30 08:28:15 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-30 08:28:15 +0100 |
commit | 045f4bb5b1767140c4f6cfe2d2002553925c4205 (patch) | |
tree | f51b2034e91a3f67d2bde506cf84d13cfc496c6e /lib/mbstring/u8rchr.c | |
parent | 5dbf53a1c512f9163744874e3d502e9f9e2808da (diff) |
Make string view lengths signed
Diffstat (limited to 'lib/mbstring/u8rchr.c')
-rw-r--r-- | lib/mbstring/u8rchr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mbstring/u8rchr.c b/lib/mbstring/u8rchr.c index 47eaa4c..0ed9f9e 100644 --- a/lib/mbstring/u8rchr.c +++ b/lib/mbstring/u8rchr.c @@ -69,7 +69,7 @@ u8rchr(u8view_t sv, rune ch) char8_t buf[U8_LEN_MAX]; int n = rtou8(buf, ch, sizeof(buf)); - if (sv.len < (size_t)n) + if (sv.len < n) return nullptr; switch (n) { case 1: |