]> source.dussan.org Git - rspamd.git/commitdiff
[Fix] Fix `rspamd_has_only_html_part`
authorVsevolod Stakhov <vsevolod@rspamd.com>
Wed, 2 Aug 2023 14:34:36 +0000 (15:34 +0100)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Wed, 2 Aug 2023 14:34:36 +0000 (15:34 +0100)
src/libmime/mime_expressions.c

index 88e9e16a1bd54103334d307ed89e0ba0399ae380..20f2c754eec0f4572dfc0d4ec4f7c7df77989e3c 100644 (file)
@@ -1,11 +1,11 @@
-/*-
- * Copyright 2016 Vsevolod Stakhov
+/*
+ * Copyright 2023 Vsevolod Stakhov
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
  *
- *   http://www.apache.org/licenses/LICENSE-2.0
+ *    http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
@@ -1470,8 +1470,6 @@ rspamd_has_only_html_part(struct rspamd_task *task, GArray *args,
 
        PTR_ARRAY_FOREACH(MESSAGE_FIELD(task, text_parts), i, p)
        {
-               p = g_ptr_array_index(MESSAGE_FIELD(task, text_parts), 0);
-
                if (!IS_TEXT_PART_ATTACHMENT(p)) {
                        if (IS_TEXT_PART_HTML(p)) {
                                cnt_html++;