Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 13623 invoked from network); 17 Nov 2006 07:44:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Nov 2006 07:44:24 -0000 Received: (qmail 74978 invoked by uid 500); 17 Nov 2006 07:44:35 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 74882 invoked by uid 500); 17 Nov 2006 07:44:34 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 74873 invoked by uid 99); 17 Nov 2006 07:44:34 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Nov 2006 23:44:34 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Nov 2006 23:44:24 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 410C31A9846; Thu, 16 Nov 2006 23:43:52 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r476067 - /incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java Date: Fri, 17 Nov 2006 07:43:52 -0000 To: cxf-commits@incubator.apache.org From: tli@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061117074352.410C31A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tli Date: Thu Nov 16 23:43:51 2006 New Revision: 476067 URL: http://svn.apache.org/viewvc?view=rev&rev=476067 Log: fix a non-end loop bug in processing stack trace Modified: incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java Modified: incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java?view=diff&rev=476067&r1=476066&r2=476067 ============================================================================== --- incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java (original) +++ incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/ClientFaultConverter.java Thu Nov 16 23:43:51 2006 @@ -126,10 +126,10 @@ } Node next = exDetail.getNextSibling(); while (!(next instanceof Element)) { - next = exDetail.getNextSibling(); if (next == null) { break; } + next = next.getNextSibling(); } if (next instanceof Element) { exDetail = (Element) next;