diff options
author | louiz’ <louiz@louiz.org> | 2017-01-06 23:45:26 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2017-01-06 23:45:26 +0100 |
commit | e31ff3e9e94d943d4f307eb6ab8cee7fbd11b565 (patch) | |
tree | 42666bddcfcf827426d3086f6f8e71143a059eb4 /src/xmpp/biboumi_component.cpp | |
parent | 6bf9cedbeb30740c267ea283058c93ed63648fc9 (diff) | |
download | biboumi-e31ff3e9e94d943d4f307eb6ab8cee7fbd11b565.tar.gz biboumi-e31ff3e9e94d943d4f307eb6ab8cee7fbd11b565.tar.bz2 biboumi-e31ff3e9e94d943d4f307eb6ab8cee7fbd11b565.tar.xz biboumi-e31ff3e9e94d943d4f307eb6ab8cee7fbd11b565.zip |
Fix some issues found by sonar cube
Diffstat (limited to 'src/xmpp/biboumi_component.cpp')
-rw-r--r-- | src/xmpp/biboumi_component.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmpp/biboumi_component.cpp b/src/xmpp/biboumi_component.cpp index 6971538..bd6975e 100644 --- a/src/xmpp/biboumi_component.cpp +++ b/src/xmpp/biboumi_component.cpp @@ -136,7 +136,7 @@ void BiboumiComponent::handle_presence(const Stanza& stanza) // stanza_error.disable() call at the end of the function. std::string error_type("cancel"); std::string error_name("internal-server-error"); - utils::ScopeGuard stanza_error([&](){ + utils::ScopeGuard stanza_error([this, &from_str, &to_str, &id, &error_type, &error_name](){ this->send_stanza_error("presence", from_str, to_str, id, error_type, error_name, ""); }); @@ -205,7 +205,7 @@ void BiboumiComponent::handle_message(const Stanza& stanza) std::string error_type("cancel"); std::string error_name("internal-server-error"); - utils::ScopeGuard stanza_error([&](){ + utils::ScopeGuard stanza_error([this, &from_str, &to_str, &id, &error_type, &error_name](){ this->send_stanza_error("message", from_str, to_str, id, error_type, error_name, ""); }); @@ -324,7 +324,7 @@ void BiboumiComponent::handle_iq(const Stanza& stanza) // the scopeguard. std::string error_type("cancel"); std::string error_name("internal-server-error"); - utils::ScopeGuard stanza_error([&](){ + utils::ScopeGuard stanza_error([this, &from, &to_str, &id, &error_type, &error_name](){ this->send_stanza_error("iq", from, to_str, id, error_type, error_name, ""); }); |