diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-01-24 14:09:07 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-01-24 14:09:07 +0000 |
commit | b1dca3c8bdba396ed5dc692cbcd22186f7dcc525 (patch) | |
tree | 769af0dba00677777042c54e6a36e9564ec67925 /src/libserver/html.h | |
parent | b29c55a1945c81036a02c62d0329a63877ac73b4 (diff) | |
download | rspamd-b1dca3c8bdba396ed5dc692cbcd22186f7dcc525.tar.gz rspamd-b1dca3c8bdba396ed5dc692cbcd22186f7dcc525.zip |
[Fix] HTML: Fix entities in HTML attributes
Diffstat (limited to 'src/libserver/html.h')
-rw-r--r-- | src/libserver/html.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libserver/html.h b/src/libserver/html.h index a2f3a0b1d..f816567bd 100644 --- a/src/libserver/html.h +++ b/src/libserver/html.h @@ -127,7 +127,7 @@ struct html_content { /* * Decode HTML entitles in text. Text is modified in place. */ -guint rspamd_html_decode_entitles_inplace (gchar *s, guint len); +guint rspamd_html_decode_entitles_inplace (gchar *s, gsize len); GByteArray* rspamd_html_process_part (rspamd_mempool_t *pool, struct html_content *hc, |