package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
524 B
16 lines
524 B
diff --git a/0.2.5/src/charset/codecs/codec_utf8.c b/0.2.5/src/charset/codecs/codec_utf8.c |
|
index 6117fe6..39bdb28 100644 |
|
--- a/0.2.5/src/charset/codecs/codec_utf8.c |
|
+++ b/0.2.5/src/charset/codecs/codec_utf8.c |
|
@@ -409,8 +409,8 @@ parserutils_error charset_utf8_codec_read_char(charset_utf8_codec *c, |
|
const uint8_t **source, size_t *sourcelen, |
|
uint8_t **dest, size_t *destlen) |
|
{ |
|
- uint32_t ucs4; |
|
- size_t sucs4; |
|
+ uint32_t ucs4 = 0; |
|
+ size_t sucs4 = 0; |
|
parserutils_error error; |
|
|
|
/* Convert a single character */ |
|
|
|
|