From a1a044d2ea2f5c33a2acf6b346972ac9b8631ed4 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 --- source/utils/net_rpc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/utils/net_rpc.c b/source/utils/net_rpc.c index ac7e5663441..e80e8e6f5c0 100644 --- a/source/utils/net_rpc.c +++ b/source/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