From: Amos Jeffries Date: Mon, 11 Nov 2013 11:43:53 +0000 (-0700) Subject: Fix uninitialized members in stub_HttpReply.cc X-Git-Tag: SQUID_3_5_0_1~525 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be798e4584fe48104abf2a9fb12543886de16201;p=thirdparty%2Fsquid.git Fix uninitialized members in stub_HttpReply.cc Detected by Coverity Scan. Issue 740582. --- diff --git a/src/tests/stub_HttpReply.cc b/src/tests/stub_HttpReply.cc index a361b8d64e..60f022950b 100644 --- a/src/tests/stub_HttpReply.cc +++ b/src/tests/stub_HttpReply.cc @@ -6,7 +6,7 @@ HttpReply::HttpReply() : HttpMsg(hoReply), date (0), last_modified (0), expires (0), surrogate_control (NULL), content_range (NULL), keep_alive (0), - protoPrefix("HTTP/"), bodySizeMax(-2) + protoPrefix("HTTP/"), do_clean(false), bodySizeMax(-2) STUB_NOP HttpReply::~HttpReply() STUB void HttpReply::setHeaders(Http::StatusCode status, const char *reason, const char *ctype, int64_t clen, time_t lmt, time_t expires_) STUB