From ea6a19a26006ea688e4e5fd8b2b4cd33d7091119 Mon Sep 17 00:00:00 2001 From: SChernykh Date: Sat, 6 Aug 2022 11:15:09 +0200 Subject: [PATCH] Fixed data race --- src/console_commands.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/console_commands.cpp b/src/console_commands.cpp index e4def49..7313eab 100644 --- a/src/console_commands.cpp +++ b/src/console_commands.cpp @@ -76,8 +76,6 @@ ConsoleCommands::ConsoleCommands(p2pool* pool) LOGERR(1, "failed to start event loop thread, error " << uv_err_name(err)); throw std::exception(); } - - m_command.reserve(64); } ConsoleCommands::~ConsoleCommands()