diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2021-06-11 07:51:29 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2021-06-11 07:51:29 +0000 |
commit | 67b97a5f16ffbbf920953d75af6f7bf67606bccc (patch) | |
tree | e400dee0fefe2b1337b10bda0f9c949007b9a3c7 | |
parent | trezor: fix potential use of uninitialized memory (diff) | |
download | monero-67b97a5f16ffbbf920953d75af6f7bf67606bccc.tar.xz |
easylogging++: do not delete uninitialized objects
CID 1446562
-rw-r--r-- | external/easylogging++/easylogging++.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/external/easylogging++/easylogging++.cc b/external/easylogging++/easylogging++.cc index f1722f0a1..2fe8d5b9c 100644 --- a/external/easylogging++/easylogging++.cc +++ b/external/easylogging++/easylogging++.cc @@ -714,7 +714,6 @@ Logger::Logger(const std::string& id, const Configurations& configurations, } Logger::Logger(const Logger& logger) { - base::utils::safeDelete(m_typedConfigurations); m_id = logger.m_id; m_typedConfigurations = logger.m_typedConfigurations; m_parentApplicationName = logger.m_parentApplicationName; |