diff options
author | Volker Lendecke <vl@samba.org> | 2009-03-08 12:25:10 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-03-08 12:52:58 +0100 |
commit | dea9621680062b3726ad15cbec4a9d2cf7ce824e (patch) | |
tree | 50f6bc6cdfdd97e79317cfc3fe30a0c1d961922b /source3/lib | |
parent | e503148225a8b634cea57db65983e8dcdf60154d (diff) | |
download | samba-dea9621680062b3726ad15cbec4a9d2cf7ce824e.tar.gz samba-dea9621680062b3726ad15cbec4a9d2cf7ce824e.tar.bz2 samba-dea9621680062b3726ad15cbec4a9d2cf7ce824e.zip |
Don't copy the winbindd_request in wb_trans
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/wbclient.c | 32 |
1 files changed, 2 insertions, 30 deletions
diff --git a/source3/lib/wbclient.c b/source3/lib/wbclient.c index d1f3190c79..80937641e6 100644 --- a/source3/lib/wbclient.c +++ b/source3/lib/wbclient.c @@ -259,31 +259,6 @@ static wbcErr wb_connect_recv(struct tevent_req *req) return tevent_req_simple_recv_wbcerr(req); } -static struct winbindd_request *winbindd_request_copy( - TALLOC_CTX *mem_ctx, - const struct winbindd_request *req) -{ - struct winbindd_request *result; - - result = (struct winbindd_request *)TALLOC_MEMDUP( - mem_ctx, req, sizeof(struct winbindd_request)); - if (result == NULL) { - return NULL; - } - - if (result->extra_len == 0) { - return result; - } - - result->extra_data.data = (char *)TALLOC_MEMDUP( - result, result->extra_data.data, result->extra_len); - if (result->extra_data.data == NULL) { - TALLOC_FREE(result); - return NULL; - } - return result; -} - struct wb_int_trans_state { struct tevent_context *ev; int fd; @@ -600,7 +575,7 @@ static void wb_trigger_trans(struct async_req *req) struct async_req *wb_trans_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct wb_context *wb_ctx, bool need_priv, - const struct winbindd_request *wb_req) + struct winbindd_request *wb_req) { struct async_req *result; struct wb_trans_state *state; @@ -611,10 +586,7 @@ struct async_req *wb_trans_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, } state->wb_ctx = wb_ctx; state->ev = ev; - state->wb_req = winbindd_request_copy(state, wb_req); - if (state->wb_req == NULL) { - goto fail; - } + state->wb_req = wb_req; state->num_retries = 10; state->need_priv = need_priv; |