auriemma    01/02/02 06:21:25

  Modified:    c/samples/ApacheModuleXSLT mod_xslt.c
  Log:
  No longer passing the address of the XalanHandle to DeleteXalanTransformer.
  
  Revision  Changes    Path
  1.2       +2 -1      xml-xalan/c/samples/ApacheModuleXSLT/mod_xslt.c
  
  Index: mod_xslt.c
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/samples/ApacheModuleXSLT/mod_xslt.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- mod_xslt.c        2001/02/01 14:22:04     1.1
  +++ mod_xslt.c        2001/02/02 14:21:25     1.2
  @@ -138,10 +138,11 @@
        if(error)
        {
                r->uri = filename;
  +
                return DECLINED;
        }
   
  -     DeleteXalanTransformer(&xalan);
  +     DeleteXalanTransformer(xalan);
   
        return OK;
   }
  
  
  

Reply via email to