]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5470] Fixed uninitialized class member.
authorMarcin Siodelski <marcin@isc.org>
Mon, 26 Mar 2018 15:01:04 +0000 (17:01 +0200)
committerMarcin Siodelski <marcin@isc.org>
Mon, 26 Mar 2018 15:01:04 +0000 (17:01 +0200)
src/lib/http/connection.cc

index 59ee436b8cf5682a04546919454e0004bbd260da..c6f3f36caa92109e07c2377d86eda04174436033 100644 (file)
@@ -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();
 }