From 6dfa5bf6f112da8268dd0c0ac0e17d2fdbdb2fea Mon Sep 17 00:00:00 2001 From: Marcin Siodelski Date: Mon, 26 Mar 2018 17:01:04 +0200 Subject: [PATCH] [5470] Fixed uninitialized class member. --- src/lib/http/connection.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/http/connection.cc b/src/lib/http/connection.cc index 59ee436b8c..c6f3f36caa 100644 --- a/src/lib/http/connection.cc +++ b/src/lib/http/connection.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2017-2018 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this @@ -43,7 +43,8 @@ HttpConnection:: HttpConnection(asiolink::IOService& io_service, request_(response_creator_->createNewHttpRequest()), parser_(new HttpRequestParser(*request_)), acceptor_callback_(callback), - buf_() { + buf_(), + output_buf_() { parser_->initModel(); } -- 2.47.2