diff options
-rw-r--r-- | Userland/Services/SQLServer/SQLStatement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/SQLServer/SQLStatement.cpp b/Userland/Services/SQLServer/SQLStatement.cpp index 74b9139778..d95337acd7 100644 --- a/Userland/Services/SQLServer/SQLStatement.cpp +++ b/Userland/Services/SQLServer/SQLStatement.cpp @@ -134,7 +134,7 @@ void SQLStatement::next(SQL::ExecutionID execution_id, SQL::ResultSet result, si auto result_row = result.take_first(); client_connection->async_next_result(statement_id(), execution_id, result_row.row.take_data()); - deferred_invoke([this, execution_id, result = move(result), result_size]() { + deferred_invoke([this, execution_id, result = move(result), result_size]() mutable { next(execution_id, move(result), result_size); }); } else { |