From eb3ee7801fec0e06561732aca6012f8a8b4c24ff Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 21 Jun 2010 16:20:25 +0200 Subject: [PATCH] libcli/named_pipe_auth: fix error handling in _tstream_npa_connect_recv() metze --- libcli/named_pipe_auth/npa_tstream.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcli/named_pipe_auth/npa_tstream.c b/libcli/named_pipe_auth/npa_tstream.c index 59d3a97dc0b..f6ce951ef0b 100644 --- a/libcli/named_pipe_auth/npa_tstream.c +++ b/libcli/named_pipe_auth/npa_tstream.c @@ -420,6 +420,8 @@ int _tstream_npa_connect_recv(struct tevent_req *req, struct tstream_npa, location); if (!stream) { + *perrno = ENOMEM; + tevent_req_received(req); return -1; } ZERO_STRUCTP(npas); -- 2.34.1