source3/rpc_client: Fix CID 1273041 Condition is redundant
authorAnoop C S <anoopcs@redhat.com>
Mon, 3 Aug 2015 08:31:58 +0000 (14:01 +0530)
committerMichael Adam <obnox@samba.org>
Thu, 6 Aug 2015 23:31:23 +0000 (01:31 +0200)
Signed-off-by: Anoop C S <anoopcs@redhat.com>
Reviewed-by: Michael Adam <obnox@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Autobuild-User(master): Michael Adam <obnox@samba.org>
Autobuild-Date(master): Fri Aug  7 01:31:23 CEST 2015 on sn-devel-104

source3/rpc_client/rpc_transport_np.c

index b928b7c3474279c83b26e3cd4b8d5d057e89c75d..9dc5c5634fc0e244e91ac518dd747d450b9a905a 100644 (file)
@@ -141,7 +141,8 @@ static void rpc_transport_np_init_pipe_open(struct tevent_req *subreq)
                                 timeval_current_ofs_msec(100 * state->retries),
                                 rpc_transport_np_init_pipe_open_retry, req);
                if (tevent_req_nomem(te, req)) {
-                       return;
+                       DEBUG(2, ("Failed to create asynchronous "
+                                       "tevent_timer"));
                }
                return;
        } else if (!NT_STATUS_IS_OK(status)) {