On 7/12/22 23:19, Emanuele Giuseppe Esposito wrote:
+ /* No need to ignore `child`, because it has been detached already */ ignore = NULL; - child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore); + ret = child->klass->change_aio_ctx(child, s->old_parent_ctx, &ignore, + tran, &error_abort); g_slist_free(ignore); + tran_finalize(tran, ret ? ret : -1);
Should this instead assert that ret is true, and call tran_commit() directly?
Paolo