You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by do...@apache.org on 2002/05/18 03:07:16 UTC

cvs commit: modperl-2.0/src/modules/perl modperl_callback.c

dougm       02/05/17 18:07:16

  Modified:    src/modules/perl modperl_callback.c
  Log:
  don't use the G_METHOD flag with call_sv() for method handlers, since
  we lookup the method ourselves.
  
  Revision  Changes    Path
  1.49      +0 -4      modperl-2.0/src/modules/perl/modperl_callback.c
  
  Index: modperl_callback.c
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_callback.c,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- modperl_callback.c	21 Feb 2002 01:45:34 -0000	1.48
  +++ modperl_callback.c	18 May 2002 01:07:16 -0000	1.49
  @@ -45,10 +45,6 @@
           }
       }
   
  -    if (MpHandlerMETHOD(handler)) {
  -        flags |= G_METHOD;
  -    }
  -
       count = call_sv((SV*)cv, flags);
   
       SPAGAIN;