From 65c4dcbefbe118eb1b04335d7d6171236a1315c2 Mon Sep 17 00:00:00 2001 From: Roy Li Date: Tue, 28 Apr 2015 08:24:59 +0800 Subject: subversion: remove 1.6.X recipes Removing the 1.6.X recipes, since there is a new version 1.8.X recipes, and hope that all projects already upgraded their premirror caches to use new format Signed-off-by: Roy Li Signed-off-by: Richard Purdie --- .../subversion/subversion-CVE-2014-3528.patch | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 meta/recipes-devtools/subversion/subversion/subversion-CVE-2014-3528.patch (limited to 'meta/recipes-devtools/subversion/subversion/subversion-CVE-2014-3528.patch') diff --git a/meta/recipes-devtools/subversion/subversion/subversion-CVE-2014-3528.patch b/meta/recipes-devtools/subversion/subversion/subversion-CVE-2014-3528.patch deleted file mode 100644 index 23e738e985..0000000000 --- a/meta/recipes-devtools/subversion/subversion/subversion-CVE-2014-3528.patch +++ /dev/null @@ -1,29 +0,0 @@ -Upstream-Status: Backport - -Signed-off-by: Yue Tao - -diff --git a/subversion/libsvn_subr/config_auth.c.old b/subversion/libsvn_subr/config_auth.c -index ff50270..c511d04 100644 ---- a/subversion/libsvn_subr/config_auth.c.old -+++ b/subversion/libsvn_subr/config_auth.c -@@ -85,6 +85,7 @@ svn_config_read_auth_data(apr_hash_t **hash, - if (kind == svn_node_file) - { - svn_stream_t *stream; -+ svn_string_t *stored_realm; - - SVN_ERR_W(svn_stream_open_readonly(&stream, auth_path, pool, pool), - _("Unable to open auth file for reading")); -@@ -95,6 +96,12 @@ svn_config_read_auth_data(apr_hash_t **hash, - apr_psprintf(pool, _("Error parsing '%s'"), - svn_path_local_style(auth_path, pool))); - -+ stored_realm = apr_hash_get(*hash, SVN_CONFIG_REALMSTRING_KEY, -+ APR_HASH_KEY_STRING); -+ -+ if (!stored_realm || strcmp(stored_realm->data, realmstring) != 0) -+ *hash = NULL; /* Hash collision, or somebody tampering with storage */ -+ - SVN_ERR(svn_stream_close(stream)); - } - -- cgit 1.2.3-korg