[Commits] [SCM] claws branch, master, updated. 4.2.0-76-g45209525f

paul at claws-mail.org paul at claws-mail.org
Wed Apr 10 13:06:10 UTC 2024


The branch, master has been updated
       via  45209525fa55d711d3224a8f1171f46b77c47678 (commit)
      from  c056a9ab28ff1235230af31be3f1f7fe20f98cbf (commit)

Summary of changes:
 src/common/utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


- Log -----------------------------------------------------------------
commit 45209525fa55d711d3224a8f1171f46b77c47678
Author: Paul <paul at claws-mail.org>
Date:   Wed Apr 10 14:06:06 2024 +0100

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

diff --git a/src/common/utils.c b/src/common/utils.c
index 8181d5f15..a9aa2cdfa 100644
--- 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;

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list