summaryrefslogtreecommitdiff
path: root/debian/patches/0034-xmlSaveUri-incorrectly-recomposes-URIs-with-rootless.patch
diff options
context:
space:
mode:
authorAron Xu <aron@debian.org>2015-09-21 22:55:08 +0800
committerAron Xu <aron@debian.org>2015-09-21 22:55:08 +0800
commitd548c999ade382febb424b26743b3c4d63159ae0 (patch)
tree232c9c894b45099f211728742569111738b17e16 /debian/patches/0034-xmlSaveUri-incorrectly-recomposes-URIs-with-rootless.patch
parentd837811e969fac31afdf39c00ba579b33f6adeb6 (diff)
downloadlibxml2-d548c999ade382febb424b26743b3c4d63159ae0.tar.gz
Revert "Restore all patches available in 2.9.1+dfsg1-5 in stretch, ensuring CVE-2014-3660 is fixed too."
This reverts commit 37f590756a23e167808f76f1389c36f0a2d39f11.
Diffstat (limited to 'debian/patches/0034-xmlSaveUri-incorrectly-recomposes-URIs-with-rootless.patch')
-rw-r--r--debian/patches/0034-xmlSaveUri-incorrectly-recomposes-URIs-with-rootless.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/debian/patches/0034-xmlSaveUri-incorrectly-recomposes-URIs-with-rootless.patch b/debian/patches/0034-xmlSaveUri-incorrectly-recomposes-URIs-with-rootless.patch
deleted file mode 100644
index 34e6547..0000000
--- a/debian/patches/0034-xmlSaveUri-incorrectly-recomposes-URIs-with-rootless.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From: Dennis Filder <d.filder@web.de>
-Date: Fri, 13 Jun 2014 14:56:14 +0800
-Subject: xmlSaveUri() incorrectly recomposes URIs with rootless paths
-
-For https://bugzilla.gnome.org/show_bug.cgi?id=731063
-
-xmlSaveUri() of libxml2 (snapshot 2014-05-31 and earlier) returns
-bogus values when called with URIs that have rootless paths
-(e.g. "urx:b:b" becomes "urx://b%3Ab" where "urx:b%3Ab" would be
-correct)
----
- uri.c | 2 --
- 1 file changed, 2 deletions(-)
-
-diff --git a/uri.c b/uri.c
-index 4ab0ce2..d4dcd2f 100644
---- a/uri.c
-+++ b/uri.c
-@@ -1194,8 +1194,6 @@ xmlSaveUri(xmlURIPtr uri) {
- if (temp == NULL) goto mem_error;
- ret = temp;
- }
-- ret[len++] = '/';
-- ret[len++] = '/';
- }
- if (uri->path != NULL) {
- p = uri->path;