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...@locus.apache.org on 2000/05/02 01:57:52 UTC

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

dougm       00/05/01 16:57:52

  Modified:    src/modules/perl modperl_callback.c
  Log:
  handler caching is broken, fix later
  
  Revision  Changes    Path
  1.9       +6 -0      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.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- modperl_callback.c	2000/04/29 02:28:35	1.8
  +++ modperl_callback.c	2000/05/01 23:57:52	1.9
  @@ -278,6 +278,12 @@
           status = HTTP_INTERNAL_SERVER_ERROR;
       }
   
  +    /* XXX: since the interpreter from which this data was allocated
  +     * can be knocked off (PerlInterpMax{Spare,Requests}, the parse caching
  +     * is broken.
  +     */
  +    modperl_handler_unparse(handler);
  +
       return status;
   }