Browse Source

[Minor] Another fix of the remaining octets logic

tags/3.1
Vsevolod Stakhov 2 years ago
parent
commit
f4914ba27b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libserver/dkim.c

+ 1
- 1
src/libserver/dkim.c View File

@@ -2037,7 +2037,7 @@ rspamd_dkim_canonize_body (struct rspamd_dkim_common_ctx *ctx,
gboolean sign)
{
const gchar *p;
gssize remain = ctx->len ? ctx->len : -1;
gssize remain = ctx->len ? ctx->len : G_MAXSSIZE;
guint total_len = end - start;
gboolean need_crlf = FALSE;


Loading…
Cancel
Save