summaryrefslogtreecommitdiff
path: root/debian/patches/0003-Fix-an-error-in-xmlCleanupParser.patch
diff options
context:
space:
mode:
authorAron Xu <aron@debian.org>2014-10-26 07:04:07 +0800
committerAron Xu <aron@debian.org>2014-10-26 07:04:07 +0800
commit4a5e25fad6693afda89b3826f73e83d826618863 (patch)
tree3c95fba1f4efbb63798bfa637bb6b335338cb1b0 /debian/patches/0003-Fix-an-error-in-xmlCleanupParser.patch
parentd5776bbf9d8842d931ab1112466d19685035281e (diff)
downloadlibxml2-4a5e25fad6693afda89b3826f73e83d826618863.tar.gz
Remove no-longer-needed upstream patches
Diffstat (limited to 'debian/patches/0003-Fix-an-error-in-xmlCleanupParser.patch')
-rw-r--r--debian/patches/0003-Fix-an-error-in-xmlCleanupParser.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/debian/patches/0003-Fix-an-error-in-xmlCleanupParser.patch b/debian/patches/0003-Fix-an-error-in-xmlCleanupParser.patch
deleted file mode 100644
index 03bf447..0000000
--- a/debian/patches/0003-Fix-an-error-in-xmlCleanupParser.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From: Alexander Pastukhov <pastuchov@yandex.ru>
-Date: Tue, 23 Apr 2013 05:02:11 +0000
-Subject: Fix an error in xmlCleanupParser
-
-https://bugzilla.gnome.org/show_bug.cgi?id=698582
-
-xmlCleanupParser calls xmlCleanupGlobals() and then
-xmlResetLastError() but the later reallocate the global
-data freed by previous call. Just swap the two calls.
----
- parser.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/parser.c b/parser.c
-index ee429f3..b9df6d8 100644
---- a/parser.c
-+++ b/parser.c
-@@ -14763,8 +14763,8 @@ xmlCleanupParser(void) {
- xmlSchemaCleanupTypes();
- xmlRelaxNGCleanupTypes();
- #endif
-- xmlCleanupGlobals();
- xmlResetLastError();
-+ xmlCleanupGlobals();
- xmlCleanupThreads(); /* must be last if called not from the main thread */
- xmlCleanupMemory();
- xmlParserInitialized = 0;