[Lxml-checkins] r43417 - lxml/trunk/src/lxml

scoder at codespeak.net scoder at codespeak.net
Tue May 15 18:38:38 CEST 2007


Author: scoder
Date: Tue May 15 18:38:37 2007
New Revision: 43417

Modified:
   lxml/trunk/src/lxml/xmlerror.pxi
Log:
memory access fix

Modified: lxml/trunk/src/lxml/xmlerror.pxi
==============================================================================
--- lxml/trunk/src/lxml/xmlerror.pxi	(original)
+++ lxml/trunk/src/lxml/xmlerror.pxi	Tue May 15 18:38:37 2007
@@ -406,6 +406,11 @@
     c_error.domain = xmlerror.XML_FROM_XSLT
     c_error.code   = xmlerror.XML_ERR_OK    # what else?
     c_error.level  = xmlerror.XML_ERR_ERROR # what else?
+    c_error.str1   = NULL
+    c_error.str2   = NULL
+    c_error.str3   = NULL
+    c_error.int1   = 0
+    c_error.int2   = 0
 
     _forwardError(c_log_handler, &c_error)
 


More information about the lxml-checkins mailing list