aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirit93 <kirit.thadaka@gmail.com>2017-02-19 12:05:02 +0530
committerWladimir J. van der Laan <laanwj@gmail.com>2017-02-21 14:33:34 +0100
commite22c0671c74bc4db70b3ba04d093cd110f9f22a7 (patch)
tree69debe38dc94d31db7998c57847b1423d621c689
parentae1c4e24a6510b2ace819eccbb928a3cb0074daf (diff)
downloadbitcoin-e22c0671c74bc4db70b3ba04d093cd110f9f22a7.tar.xz
Fix for issue #9775. Added check for open() returning a NULL pointer.
Github-Pull: #9798 Rebased-From: 40f11f8872c3e9f380f8278f984dfdabffe77539
-rw-r--r--src/util.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/util.cpp b/src/util.cpp
index ba157625d8..78c353dfe5 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -214,12 +214,13 @@ void OpenDebugLog()
assert(vMsgsBeforeOpenLog);
boost::filesystem::path pathDebug = GetDataDir() / "debug.log";
fileout = fopen(pathDebug.string().c_str(), "a");
- if (fileout) setbuf(fileout, NULL); // unbuffered
-
- // dump buffered messages from before we opened the log
- while (!vMsgsBeforeOpenLog->empty()) {
- FileWriteStr(vMsgsBeforeOpenLog->front(), fileout);
- vMsgsBeforeOpenLog->pop_front();
+ if (fileout) {
+ setbuf(fileout, NULL); // unbuffered
+ // dump buffered messages from before we opened the log
+ while (!vMsgsBeforeOpenLog->empty()) {
+ FileWriteStr(vMsgsBeforeOpenLog->front(), fileout);
+ vMsgsBeforeOpenLog->pop_front();
+ }
}
delete vMsgsBeforeOpenLog;
@@ -838,4 +839,4 @@ std::string CopyrightHolders(const std::string& strPrefix)
strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
}
return strCopyrightHolders;
-}
+} \ No newline at end of file