someone has broken croak(Nullch) in blead:

modperl_error.c: In function `modperl_croak':
modperl_error.c:93: warning: null argument where non-null required (arg 2)

which shouldn't happen, since it's a documented feature:

from util.c:

=for apidoc croak
[...]
If you want to throw an exception object, assign the object to
C<$@> and then pass C<Nullch> to croak():

   errsv = get_sv("@", TRUE);
   sv_setsv(errsv, exception_object);
   croak(Nullch);

=cut


--
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

Reply via email to