diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-08-05 22:04:31 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-08-05 22:04:31 +0000 |
commit | d3a50d0d33070cf7510cb515d309f2402ffe625a (patch) | |
tree | bd64448864d82fd10ab6364a4be5d0e7099d699b /sys-apps/ivman/files | |
parent | Bug #323717 again: Merge patch from Nick Bowler <nbowler@draconx.ca> to handl... (diff) | |
download | gentoo-2-d3a50d0d33070cf7510cb515d309f2402ffe625a.tar.gz gentoo-2-d3a50d0d33070cf7510cb515d309f2402ffe625a.tar.bz2 gentoo-2-d3a50d0d33070cf7510cb515d309f2402ffe625a.zip |
Remove xmlCleanupParser calls. Fixes bug #327729. Thanks to Itay Perl <itay.perl@gmail.com> for reporting
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/ivman/files')
-rw-r--r-- | sys-apps/ivman/files/ivman-0.6.14-no_xmlCleanupParser.patch | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/sys-apps/ivman/files/ivman-0.6.14-no_xmlCleanupParser.patch b/sys-apps/ivman/files/ivman-0.6.14-no_xmlCleanupParser.patch new file mode 100644 index 000000000000..c5b212b983a9 --- /dev/null +++ b/sys-apps/ivman/files/ivman-0.6.14-no_xmlCleanupParser.patch @@ -0,0 +1,58 @@ +Index: ivman-0.6.14/src/IvmConfig/IvmConfigActions.c +=================================================================== +--- ivman-0.6.14.orig/src/IvmConfig/IvmConfigActions.c ++++ ivman-0.6.14/src/IvmConfig/IvmConfigActions.c +@@ -244,7 +244,5 @@ nextOption: + } + xmlFreeDoc(doc); + +- xmlCleanupParser(); +- + return ret; + } +Index: ivman-0.6.14/src/IvmConfig/IvmConfigBase.c +=================================================================== +--- ivman-0.6.14.orig/src/IvmConfig/IvmConfigBase.c ++++ ivman-0.6.14/src/IvmConfig/IvmConfigBase.c +@@ -144,7 +144,5 @@ nextOption: + } + xmlFreeDoc(doc); + +- xmlCleanupParser(); +- + return ret; + } +Index: ivman-0.6.14/src/IvmConfig/IvmConfigConditions.c +=================================================================== +--- ivman-0.6.14.orig/src/IvmConfig/IvmConfigConditions.c ++++ ivman-0.6.14/src/IvmConfig/IvmConfigConditions.c +@@ -177,7 +177,5 @@ nextCondition: + } + xmlFreeDoc(doc); + +- xmlCleanupParser(); +- + return ret; + } +Index: ivman-0.6.14/src/IvmConfig/IvmConfigProperties.c +=================================================================== +--- ivman-0.6.14.orig/src/IvmConfig/IvmConfigProperties.c ++++ ivman-0.6.14/src/IvmConfig/IvmConfigProperties.c +@@ -275,8 +275,6 @@ nextAction: + } + xmlFreeDoc(doc); + +- xmlCleanupParser(); +- + ivm_check_dbus_error(&dbus_error); + + return ret; +@@ -522,8 +520,6 @@ nextActionAll: + } + xmlFreeDoc(doc); + +- xmlCleanupParser(); +- + ivm_check_dbus_error(&dbus_error); + + return ret; |