You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by au...@apache.org on 2001/02/02 15:21:26 UTC

cvs commit: xml-xalan/c/samples/ApacheModuleXSLT mod_xslt.c

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;
   }