aboutsummaryrefslogtreecommitdiffstats
path: root/src/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/html.c')
-rw-r--r--src/html.c2
1 files changed, 1 insertions, 1 deletions
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 &&