Просмотр исходного кода

[Fix] Fix headers insertion in the ordered list

tags/3.8.1
Vsevolod Stakhov 5 месяцев назад
Родитель
Сommit
b1299ac910
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 6 добавлений и 2 удалений
  1. 6
    2
      src/libmime/mime_headers.c

+ 6
- 2
src/libmime/mime_headers.c Просмотреть файл

@@ -1,5 +1,5 @@
/*
* Copyright 2023 Vsevolod Stakhov
* Copyright 2024 Vsevolod Stakhov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -1121,7 +1121,11 @@ void rspamd_message_set_modified_header(struct rspamd_task *task,
kh_value(htb, k) = hdr_elt;

if (order_ptr) {
DL_APPEND(*order_ptr, hdr_elt);
/*
* This iterates over all headers in O(N), but we have no other options here, as the
* list is already set.
*/
LL_APPEND2(*order_ptr, hdr_elt, ord_next);
}
}
else {

Загрузка…
Отмена
Сохранить