Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8eaad3 commit 2a22c32Copy full SHA for 2a22c32
sources/core/client.cpp
@@ -288,7 +288,7 @@ client::resend_failed_commands(void) {
288
//! dequeue commands and move them to a local variable
289
std::queue<command_request> commands = std::move(m_commands);
290
291
- while (m_commands.size() > 0) {
+ while (commands.size() > 0) {
292
//! Reissue the pending command and its callback.
293
unprotected_send(commands.front().command, commands.front().callback);
294
0 commit comments