RedisConnection: copy callback before calling it

This allows the callback to call RedisConnection::SetConnectedCallback() to set
another callback for this connection. This sets m_ConnectedCallback and thereby
destroys the std::function while it's running resulting in undefined behavior.
By operating on a copy, m_ConnectedCallback can be set without affecting the
currently running callback.
This commit is contained in:
Julian Brost 2021-07-28 11:30:23 +02:00
parent ff2abaa687
commit 4c7199fd7d
1 changed files with 4 additions and 2 deletions

View File

@ -323,8 +323,10 @@ void RedisConnection::Connect(asio::yield_context& yc)
Log(m_Parent ? LogNotice : LogInformation, "IcingaDB", "Connected to Redis server");
if (m_ConnectedCallback) {
m_ConnectedCallback(yc);
// Operate on a copy so that the callback can set a new callback without destroying itself while running.
auto callback (m_ConnectedCallback);
if (callback) {
callback(yc);
}
break;