summaryrefslogtreecommitdiffstats
path: root/abs/core/libxml2/libxml2-2.7.8-xpath-freeing2.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-12-07 15:09:19 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-12-07 15:09:19 (GMT)
commit356f61b55c29523fd39ad7dbeddcfa01dbaa3942 (patch)
treeb76ff8bcd5ddb88e1e717fbbf7c4d6b0e9130360 /abs/core/libxml2/libxml2-2.7.8-xpath-freeing2.patch
parentaa26a901eb595961963a262d24e5b303368c0778 (diff)
downloadlinhes_pkgbuild-356f61b55c29523fd39ad7dbeddcfa01dbaa3942.zip
linhes_pkgbuild-356f61b55c29523fd39ad7dbeddcfa01dbaa3942.tar.gz
linhes_pkgbuild-356f61b55c29523fd39ad7dbeddcfa01dbaa3942.tar.bz2
libxml2: 2.8.0
Diffstat (limited to 'abs/core/libxml2/libxml2-2.7.8-xpath-freeing2.patch')
-rw-r--r--abs/core/libxml2/libxml2-2.7.8-xpath-freeing2.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/abs/core/libxml2/libxml2-2.7.8-xpath-freeing2.patch b/abs/core/libxml2/libxml2-2.7.8-xpath-freeing2.patch
deleted file mode 100644
index 714954d..0000000
--- a/abs/core/libxml2/libxml2-2.7.8-xpath-freeing2.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-commit fec31bcd452e77c10579467ca87a785b41115de6
-Author: Daniel Veillard <veillard@redhat.com>
-Date: Thu Nov 18 11:07:24 2010 +0100
-
- Small fix for previous commit
-
-diff --git a/xpath.c b/xpath.c
-index 1447be5..8b56189 100644
---- a/xpath.c
-+++ b/xpath.c
-@@ -11765,13 +11765,14 @@ xmlXPathCompOpEvalPositionalPredicate(xmlXPathParserContextPtr ctxt,
- xmlXPathObjectPtr tmp;
- /* pop the result if any */
- tmp = valuePop(ctxt);
-- if (tmp != contextObj)
-+ if (tmp != contextObj) {
- /*
- * Free up the result
- * then pop off contextObj, which will be freed later
- */
- xmlXPathReleaseObject(xpctxt, tmp);
- valuePop(ctxt);
-+ }
- goto evaluation_error;
- }
-