mirror of
https://github.com/simon987/libscan.git
synced 2025-04-06 04:42:59 +00:00
ignored characters fix for short append_string
This commit is contained in:
parent
38a6cde31d
commit
22e75650d4
@ -230,7 +230,7 @@ static int text_buffer_append_string(text_buffer_t *buf, const char *str, size_t
|
|||||||
|
|
||||||
if (len <= 4) {
|
if (len <= 4) {
|
||||||
for (int i = 0; i < len; i++) {
|
for (int i = 0; i < len; i++) {
|
||||||
if (((utf8_int32_t) 0xffffff80 & str[i]) == 0) {
|
if (((utf8_int32_t) 0xffffff80 & str[i]) == 0 && SHOULD_KEEP_CHAR(str[i])) {
|
||||||
dyn_buffer_write_char(&buf->dyn_buffer, str[i]);
|
dyn_buffer_write_char(&buf->dyn_buffer, str[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
2
third-party/utf8.h
vendored
2
third-party/utf8.h
vendored
@ -1 +1 @@
|
|||||||
Subproject commit b686b0c5181c2dd9f8297e6ac3692c9614b083be
|
Subproject commit fdcacc00ff48f7d268108dfb0ec7ebc485f1eb16
|
Loading…
x
Reference in New Issue
Block a user