From 9a82b0da7cf53ff6e01f288555e4766ab7307333 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Thu, 22 Sep 2005 18:49:23 +0000 Subject: r10431: fix segfault when the pip open fails in 'net rpc' commands (This used to be commit ffe4188847aabcbfbfadc0f5b60d0eeea9f13d83) --- source3/utils/net_rpc.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/utils/net_rpc.c') diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index ac7e566344..e80e8e6f5c 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -131,6 +131,8 @@ int run_rpc_command(struct cli_state *cli_arg, const int pipe_idx, int conn_flag if (!(conn_flags & NET_FLAGS_NO_PIPE)) { if (!cli_nt_session_open(cli, pipe_idx)) { DEBUG(0, ("Could not initialise pipe\n")); + cli_shutdown(cli); + return -1; } } -- cgit