From: Vsevolod Stakhov Date: Wed, 11 Mar 2015 14:52:17 +0000 (+0000) Subject: Set flags to zero initially. X-Git-Tag: 0.8.3~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=561ca753429e65853fe8a33acba6be33d31f5f86;p=thirdparty%2Frspamd.git Set flags to zero initially. Conflicts: src/libutil/http.c --- diff --git a/src/libutil/http.c b/src/libutil/http.c index 02740081a0..3015770021 100644 --- a/src/libutil/http.c +++ b/src/libutil/http.c @@ -1062,6 +1062,7 @@ rspamd_http_new_message (enum http_parser_type type) new->port = 80; new->type = type; new->method = HTTP_GET; + new->flags = 0; return new; }