~sircmpwn/hare-dev

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

[PATCH hare] encoding::utf8: validate rune in encoderune()

Details
Message ID
<20220917155801.16039-1-vyivel@eclair.cafe>
DKIM signature
missing
Download raw message
Patch: +2 -0
Signed-off-by: Kirill Primak <vyivel@eclair.cafe>
---
 encoding/utf8/encode.ha | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/encoding/utf8/encode.ha b/encoding/utf8/encode.ha
index 6de0d4f0..9fecbe72 100644
--- a/encoding/utf8/encode.ha
+++ b/encoding/utf8/encode.ha
@@ -6,6 +6,8 @@
// encoderune.
export fn encoderune(r: rune) []u8 = {
	let ch = r: u32, n = 0z, first = 0u8;
	assert(ch <= 0x10FFFF, "the rune is not a valid Unicode codepoint");

	if (ch < 0x80) {
		first = 0;
		n = 1;
-- 
2.37.3

[hare/patches] build success

builds.sr.ht <builds@sr.ht>
Details
Message ID
<CMYSVHWD1GAM.FT90L323U7K6@cirno2>
In-Reply-To
<20220917155801.16039-1-vyivel@eclair.cafe> (view parent)
DKIM signature
missing
Download raw message
hare/patches: SUCCESS in 1m51s

[encoding::utf8: validate rune in encoderune()][0] from [Kirill Primak][1]

[0]: https://lists.sr.ht/~sircmpwn/hare-dev/patches/35384
[1]: vyivel@eclair.cafe

✓ #846488 SUCCESS hare/patches/freebsd.yml https://builds.sr.ht/~sircmpwn/job/846488
✓ #846487 SUCCESS hare/patches/alpine.yml  https://builds.sr.ht/~sircmpwn/job/846487
Reply to thread Export thread (mbox)