diff options
Diffstat (limited to 'src/build_log.cc')
-rw-r--r-- | src/build_log.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/build_log.cc b/src/build_log.cc index b5b429a..144ae14 100644 --- a/src/build_log.cc +++ b/src/build_log.cc @@ -14,7 +14,8 @@ // Once the number of redundant entries exceeds a threshold, we write // out a new file and replace the existing one with it. -BuildLog::BuildLog() : log_file_(NULL), needs_recompaction_(false) {} +BuildLog::BuildLog() + : log_file_(NULL), config_(NULL), needs_recompaction_(false) {} bool BuildLog::OpenForWrite(const string& path, string* err) { if (needs_recompaction_) { |