s3: Fix Coverity ID 83: RESOURCE_LEAK
[Samba.git] / source3 / rpc_client / rpc_transport_sock.c
blob58f194f262f98ca515698a14cb0c2eb8cf30700e
1 /*
2 * Unix SMB/CIFS implementation.
3 * RPC client transport over a socket
4 * Copyright (C) Volker Lendecke 2009
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
21 #include "../lib/async_req/async_sock.h"
23 #undef DBGC_CLASS
24 #define DBGC_CLASS DBGC_RPC_CLI
26 NTSTATUS rpc_transport_sock_init(TALLOC_CTX *mem_ctx, int fd,
27 struct rpc_cli_transport **presult)
29 struct rpc_cli_transport *result;
30 struct tstream_context *stream;
31 int ret;
32 NTSTATUS status;
34 set_blocking(fd, false);
36 ret = tstream_bsd_existing_socket(mem_ctx, fd, &stream);
37 if (ret != 0) {
38 status = map_nt_error_from_unix(errno);
39 return status;
42 status = rpc_transport_tstream_init(mem_ctx,
43 &stream,
44 &result);
45 if (!NT_STATUS_IS_OK(status)) {
46 TALLOC_FREE(stream);
47 return status;
50 *presult = result;
51 return NT_STATUS_OK;