diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-12-11 19:53:46 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-01-16 00:18:02 +0000 |
commit | c313bea450095e535cc9365e8d6b629a70cfa054 (patch) | |
tree | 2ffec9682befb22a11532c9fd056a0295fdcede4 /external | |
parent | easylogging++: avoid creating directory/filename for the builtin default log ... (diff) | |
download | monero-c313bea450095e535cc9365e8d6b629a70cfa054.tar.xz |
eayslogging++: Fix bad memory access before opening any files
Diffstat (limited to 'external')
-rw-r--r-- | external/easylogging++/easylogging++.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/external/easylogging++/easylogging++.h b/external/easylogging++/easylogging++.h index 6d13a27fd..7f8e257ea 100644 --- a/external/easylogging++/easylogging++.h +++ b/external/easylogging++/easylogging++.h @@ -3082,6 +3082,7 @@ namespace base { base::utils::Str::trim(boolStr); return (boolStr == "TRUE" || boolStr == "true" || boolStr == "1"); }; + setValue(Level::Global, base::FileStreamPtr(NULL), &m_fileStreamMap); std::vector<Configuration*> withFileSizeLimit; for (Configurations::const_iterator it = configurations->begin(); it != configurations->end(); ++it) { Configuration* conf = *it; |