1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-10 10:41:05 +03:00

applied patch from Brent Hendricks to avoid leak in python bindings when

* python/generator.py python/libxml.c: applied patch from Brent
  Hendricks to avoid leak in python bindings when using schemas
  error handlers.
Daniel
This commit is contained in:
Daniel Veillard
2005-03-30 07:40:35 +00:00
parent aa9a983dbd
commit bb8502c0ef
3 changed files with 12 additions and 4 deletions

View File

@ -346,6 +346,9 @@ def skip_function(name):
return 1
if name == "xmlFreeValidCtxt":
return 1
if name == "xmlSchemaFreeValidCtxt":
return 1
#
# Those are skipped because the Const version is used of the bindings
# instead.