From 0d2af41920254a8014daa213299d871318500f33 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Wed, 11 Mar 2015 14:52:17 +0000 Subject: [PATCH] Set flags to zero initially. --- src/libutil/http.c | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.39.5