From: Vsevolod Stakhov Date: Wed, 11 Mar 2015 14:52:17 +0000 (+0000) Subject: Set flags to zero initially. X-Git-Tag: 0.9.0~523 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0d2af41920254a8014daa213299d871318500f33;p=rspamd.git Set flags to zero initially. --- diff --git a/src/libutil/http.c b/src/libutil/http.c index 1e0d37017..ba759baf1 100644 --- a/src/libutil/http.c +++ b/src/libutil/http.c @@ -1259,6 +1259,7 @@ rspamd_http_new_message (enum http_parser_type type) new->type = type; new->method = HTTP_GET; new->peer_key = NULL; + new->flags = 0; return new; }