search for: ec28815

Displaying 1 result from an estimated 1 matches for "ec28815".

Did you mean: 528815
2019 Sep 19
1
[PATCH nbdkit] server: Remove tricksy initialization of struct b_conn_handle.
...uld have no effect on how the code works. See commit d60d0f4248610fc1d116dc9f249526d20913c9a3. --- server/connections.c | 3 +-- server/internal.h | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/server/connections.c b/server/connections.c index 819f7b8..ec28815 100644 --- a/server/connections.c +++ b/server/connections.c @@ -269,9 +269,8 @@ new_connection (int sockin, int sockout, int nworkers) goto error; } conn->nr_handles = backend->i + 1; - memset (conn->handles, -1, conn->nr_handles * sizeof *conn->handles); for_each_bac...