Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 87127 invoked by uid 500); 6 Aug 2002 01:21:55 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 87112 invoked from network); 6 Aug 2002 01:21:54 -0000 From: "Rob Saccoccio" To: Cc: Subject: [PATCH] poll.c:apr_pollset_poll() Date: Mon, 5 Aug 2002 21:22:02 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N The descriptors return value for apr_pollset_poll() isn't setup in the !HAVE_POLL path.. --rob diff -u -r1.26 poll.c --- poll.c 4 Aug 2002 04:43:23 -0000 1.26 +++ poll.c 6 Aug 2002 01:18:17 -0000 @@ -602,6 +624,7 @@ } } + *descriptors = pollset->result_set; return APR_SUCCESS; }