Return-Path: Delivered-To: apmail-perl-modperl-archive@www.apache.org Received: (qmail 57599 invoked from network); 22 Jul 2005 00:18:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 22 Jul 2005 00:18:44 -0000 Received: (qmail 22771 invoked by uid 500); 22 Jul 2005 00:18:36 -0000 Delivered-To: apmail-perl-modperl-archive@perl.apache.org Received: (qmail 22757 invoked by uid 500); 22 Jul 2005 00:18:35 -0000 Mailing-List: contact modperl-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list modperl@perl.apache.org Received: (qmail 22744 invoked by uid 99); 22 Jul 2005 00:18:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jul 2005 17:18:35 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [63.124.102.77] (HELO mail2.m-cam.com) (63.124.102.77) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jul 2005 17:18:29 -0700 Received: from localhost (localhost.localdomain [127.0.0.1]) by mail2.m-cam.com (Postfix) with ESMTP id A82163E8F5 for ; Thu, 21 Jul 2005 20:33:53 -0400 (EDT) Received: from mail2.m-cam.com ([127.0.0.1]) by localhost (mail2.m-cam.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16591-04 for ; Thu, 21 Jul 2005 20:33:51 -0400 (EDT) Received: from [192.168.1.21] (unknown [192.168.1.21]) by mail2.m-cam.com (Postfix) with ESMTP id AE5863E8F1 for ; Thu, 21 Jul 2005 20:33:49 -0400 (EDT) Message-ID: <42E03B4E.9010204@m-cam.com> Date: Thu, 21 Jul 2005 20:18:22 -0400 From: Arshavir Grigorian User-Agent: Mozilla Thunderbird 1.0 (X11/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: mod_perl Mailing List Subject: CGI::Carp Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at m-cam.com X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello list, Not sure when this started happening, but at some point calling CGI::Carp::carp() started resulting in deep recursion within CGI::Carp::warn() eventually killing the process. I think the recursion is caused by the following: $main::SIG{__WARN__}=\&CGI::Carp::warn; sub realwarn { CORE::warn(@_); } sub warn { ... return realwarn $message; } Is this a bug in the code or am I reading this wrong? Arshavir