From 3ebceeece2204d3755df1f1cc8210f7e97b6daad Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Tue, 16 Nov 2010 22:00:29 +0300 Subject: Make own strlcpy that does not calculate remaining string length (faster and more safe) Allow only ASCII symbols in logs, escape control chars --- src/html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/html.c') diff --git a/src/html.c b/src/html.c index 810ba963b..1747c7ce2 100644 --- a/src/html.c +++ b/src/html.c @@ -778,7 +778,7 @@ parse_tag_url (struct worker_task *task, struct mime_text_part *part, tag_id_t i } url_text = memory_pool_alloc (task->task_pool, len + 1); - g_strlcpy (url_text, c, len + 1); + rspamd_strlcpy (url_text, c, len + 1); decode_entitles (url_text, NULL); if (g_ascii_strncasecmp (url_text, "http://", sizeof ("http://") - 1) != 0 && -- cgit v1.2.3