]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-mail: message-parser - Change last_chr to unsigned char
authorAki Tuomi <aki.tuomi@open-xchange.com>
Thu, 20 Aug 2020 06:10:36 +0000 (09:10 +0300)
committeraki.tuomi <aki.tuomi@open-xchange.com>
Fri, 11 Sep 2020 07:07:20 +0000 (07:07 +0000)
Matches code usage.

src/lib-mail/message-parser-private.h

index 1f9c66b8273cba26d3864bc7426acfc1f5c31ebf..41c32daf3a4c85bf7bfd7afcf06924e8bde08136 100644 (file)
@@ -38,7 +38,7 @@ struct message_parser_ctx {
        ARRAY(struct message_part **) next_part_stack;
 
        size_t skip;
-       char last_chr;
+       unsigned char last_chr;
        unsigned int want_count;
 
        struct message_header_parser_ctx *hdr_parser_ctx;