Initialize pointer with nullptr

This commit is contained in:
Ivan Lezhankin 2021-04-01 16:26:13 +03:00
parent cc1c439ad8
commit 19550d5173

View File

@ -62,7 +62,7 @@ public:
private:
Poco::Net::HTTPServerSession & session;
HTTPServerRequest * request;
HTTPServerRequest * request = nullptr;
std::shared_ptr<std::ostream> stream;
std::shared_ptr<std::ostream> header_stream;
};