Browse Source

HPCC-17796 Uninitialized variables in http.cpp (CID 1441195)

Signed-off-by: Shamser Ahmed <shamser.ahmed@lexisnexis.co.uk>
Shamser Ahmed 8 years ago
parent
commit
9d196009a6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      esp/tools/soapplus/http.cpp

+ 1 - 1
esp/tools/soapplus/http.cpp

@@ -430,7 +430,7 @@ void Http::SplitURL(const char* url, StringBuffer& protocol,StringBuffer& UserNa
 
 HttpClient::HttpClient(IProperties* globals, const char* url, const char* inname, 
                        const char* outdir, const char* outfilename, bool writeToFiles,
-                       int doValidation, const char* xsdpath, bool isEspLogFile)
+                       int doValidation, const char* xsdpath, bool isEspLogFile) : m_stopstress(false)
 {
     m_globals = globals;
     if(url && *url)