From cd58694953e74d9b628538ca18b350f1903b5e4f Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Tue, 27 Aug 2013 14:43:43 +0300 Subject: [PATCH] Add NULL initialization for d_c on httpconnector --- modules/remotebackend/httpconnector.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/remotebackend/httpconnector.cc b/modules/remotebackend/httpconnector.cc index fe6a4cda47..da76c741e9 100644 --- a/modules/remotebackend/httpconnector.cc +++ b/modules/remotebackend/httpconnector.cc @@ -17,6 +17,7 @@ #ifdef REMOTEBACKEND_HTTP HTTPConnector::HTTPConnector(std::map options) { + this->d_c = NULL; this->d_url = options.find("url")->second; if (options.find("url-suffix") != options.end()) { this->d_url_suffix = options.find("url-suffix")->second; -- 2.47.2