s3: fix crash in winbindd
[ira/wip.git] / source3 / rpc_client / rpc_transport_np.c
index 40d68dd2eabc6808920551c96ec19602f3e9c2eb..dceacf68157353fa6f7aaf83cde2daff36c7e948 100644 (file)
@@ -31,6 +31,12 @@ struct rpc_transport_np_state {
 static int rpc_transport_np_state_destructor(struct rpc_transport_np_state *s)
 {
        bool ret;
+
+       if (s->cli->fd == -1) {
+               DEBUG(10, ("socket was closed, no need to send close request.\n"));
+               return 0;
+       }
+       
        ret = cli_close(s->cli, s->fnum);
        if (!ret) {
                DEBUG(1, ("rpc_transport_np_state_destructor: cli_close "