From 809ccc7b7fd853a5caa65bd7ccd8a3ea6e87fe23 Mon Sep 17 00:00:00 2001 From: uburuntu Date: Sat, 27 May 2017 04:18:19 +0200 Subject: [PATCH] not initialized members in constructor I dont know how to fix, so left comments about it --- cli/threadexecutor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/threadexecutor.cpp b/cli/threadexecutor.cpp index fad733b59..1c128c03a 100644 --- a/cli/threadexecutor.cpp +++ b/cli/threadexecutor.cpp @@ -49,6 +49,7 @@ using std::memset; ThreadExecutor::ThreadExecutor(const std::map &files, Settings &settings, ErrorLogger &errorLogger) : _files(files), _settings(settings), _errorLogger(errorLogger), _fileCount(0) + // Not initialized _fileSync, _errorSync, _reportSync { #if defined(THREADING_MODEL_FORK) _wpipe = 0;