diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-06-23 13:49:22 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-06-23 13:49:22 +0100 |
commit | eac6f15d9ea61cafdf706fc7faec45d23aacdd1d (patch) | |
tree | 85a57c6f7357c4b2ad27fee725f4da17e757148c /src/libserver/html.h | |
parent | 8abc8829566bd40bdf796cc5c69b006ab64082f3 (diff) | |
download | rspamd-eac6f15d9ea61cafdf706fc7faec45d23aacdd1d.tar.gz rspamd-eac6f15d9ea61cafdf706fc7faec45d23aacdd1d.zip |
[Feature] Propagate content length of invisible tags
Diffstat (limited to 'src/libserver/html.h')
-rw-r--r-- | src/libserver/html.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libserver/html.h b/src/libserver/html.h index 44a14a0f7..abe38606e 100644 --- a/src/libserver/html.h +++ b/src/libserver/html.h @@ -95,9 +95,9 @@ struct html_block { struct html_tag { gint id; gint flags; - gsize content_length; - const gchar *content; + guint content_length; struct html_tag_component name; + const gchar *content; GQueue *params; gpointer extra; /** Additional data associated with tag (e.g. image) */ GNode *parent; |