Re: untraceable uninit warnings

2001-06-14 Thread Doug MacEachern
On Wed, 7 Mar 2001, Graham Barr wrote: Does anyone have any idea what could be causing Use of uninitialized value at PerlHandler subroutine `VC::Delivery::Cycle::handler' line 1. to appear in the errorlog ? I even added local $SIG{__WARN__} = sub { warn here }; as the first

Re: untraceable uninit warnings

2001-06-14 Thread Graham Barr
Ah, this was a while ago, I did actually trace the problem down. The handler was returning undef which was causing these warnings. It was just not taht obvious from the warning given. Graham. On Thu, Jun 14, 2001 at 09:48:42AM -0700, Doug MacEachern wrote: On Wed, 7 Mar 2001, Graham Barr

untraceable uninit warnings

2001-03-07 Thread Graham Barr
Does anyone have any idea what could be causing Use of uninitialized value at PerlHandler subroutine `VC::Delivery::Cycle::handler' line 1. to appear in the errorlog ? I even added local $SIG{__WARN__} = sub { warn "here" }; as the first line of VC::Delivery::Cycle::handler, but it never