talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 45209525fa55d711d3224a8f1171f46b77c47678
parent c056a9ab28ff1235230af31be3f1f7fe20f98cbf
Author: Paul <paul@claws-mail.org>
Date:   Wed, 10 Apr 2024 14:06:06 +0100

fix bug 4796, 'URL with wide character doesn't work'

Diffstat:
Msrc/common/utils.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/utils.c b/src/common/utils.c @@ -1372,7 +1372,7 @@ gint get_uri_len(const gchar *str) if (is_uri_string(str)) { for (p = str; *p != '\0'; p++) { - if (!g_ascii_isgraph(*p) || strchr("<>\"", *p)) + if (strchr("<>\"", *p)) break; } return p - str;