search for: 819f7b86

Displaying 2 results from an estimated 2 matches for "819f7b86".

2019 Sep 19
0
[nbdkit PATCH 1/4] server: Fix regression for NBD_OPT_INFO before NBD_OPT_GO
...void backend_set_handle (struct backend *b, struct connection *conn, void *handle) { assert (b->i < conn->nr_handles); + assert (conn->handles[b->i].handle == NULL); conn->handles[b->i].handle = handle; } diff --git a/server/connections.c b/server/connections.c index 819f7b86..3c4296ea 100644 --- a/server/connections.c +++ b/server/connections.c @@ -369,7 +369,7 @@ free_connection (struct connection *conn) */ if (!quit && connection_get_handle (conn, 0)) { lock_request (conn); - backend->close (backend, conn); + backend_close (backend, conn)...
2019 Sep 19
7
[nbdkit PATCH 0/4] Spec compliance patches
The first one is the nastiest - it is an assertion failure caused by a spec-compliant client and introduced by our security fix that was released in 1.14.1. Eric Blake (4): server: Fix regression for NBD_OPT_INFO before NBD_OPT_GO server: Fix back-to-back SET_META_CONTEXT server: Forbid NUL in export and context names server: Fix OPT_GO on different export than SET_META_CONTEXT