diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-07-05 18:25:05 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-07-05 18:25:05 +0400 |
commit | 9f7f743f9e4c5ee9755d8c4cd757b151daa15954 (patch) | |
tree | 586931ba348a68c226159481c2e80f0ac24126f7 /src/message.c | |
parent | 52e71f9ed43b0e0f7f030eb0f0b56a887978cf8a (diff) | |
download | rspamd-9f7f743f9e4c5ee9755d8c4cd757b151daa15954.tar.gz rspamd-9f7f743f9e4c5ee9755d8c4cd757b151daa15954.zip |
* Fix chartable module in utf mode
Diffstat (limited to 'src/message.c')
-rw-r--r-- | src/message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c index ef3cc02e6..834f36f45 100644 --- a/src/message.c +++ b/src/message.c @@ -548,7 +548,7 @@ process_text_part (struct worker_task *task, GByteArray * part_content, GMimeCon text_part->html_urls = g_tree_new ((GCompareFunc) g_ascii_strcasecmp); text_part->urls = g_tree_new ((GCompareFunc) g_ascii_strcasecmp); - text_part->content = strip_html_tags (task, task->task_pool, text_part, part_content, NULL); + text_part->content = strip_html_tags (task, task->task_pool, text_part, text_part->orig, NULL); if (text_part->html_nodes == NULL) { url_parse_text (task->task_pool, task, text_part, FALSE); |