diff options
author | Peter Wemm <peter@FreeBSD.org> | 2018-05-08 03:44:38 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2018-05-08 03:44:38 +0000 |
commit | 3faf8d6bffc5d0fb2525ba37bb504c53366caf9d (patch) | |
tree | 7e47911263e75034b767fe34b2f8d3d17e91f66d /subversion/svnrdump/util.c | |
parent | a55fb3c0d5eca7d887798125d5b95942b1f01d4b (diff) |
Import Subversion-1.10.0vendor/subversion/subversion-1.10.0
Notes
Notes:
svn path=/vendor/subversion/dist/; revision=333347
svn path=/vendor/subversion/subversion-1.10.0/; revision=333348; tag=vendor/subversion/subversion-1.10.0
Diffstat (limited to 'subversion/svnrdump/util.c')
-rw-r--r-- | subversion/svnrdump/util.c | 34 |
1 files changed, 8 insertions, 26 deletions
diff --git a/subversion/svnrdump/util.c b/subversion/svnrdump/util.c index 9a89c8918da9..e612b12b48af 100644 --- a/subversion/svnrdump/util.c +++ b/subversion/svnrdump/util.c @@ -21,53 +21,35 @@ * ==================================================================== */ -#include "svn_error.h" -#include "svn_pools.h" -#include "svn_string.h" -#include "svn_props.h" -#include "svn_subst.h" +#include "private/svn_repos_private.h" #include "svnrdump.h" svn_error_t * -svn_rdump__normalize_prop(const char *name, - const svn_string_t **value, - apr_pool_t *result_pool) -{ - if (svn_prop_needs_translation(name) && *value) - { - const char *cstring; - - SVN_ERR(svn_subst_translate_cstring2((*value)->data, &cstring, - "\n", TRUE, - NULL, FALSE, - result_pool)); - - *value = svn_string_create(cstring, result_pool); - } - return SVN_NO_ERROR; -} - -svn_error_t * svn_rdump__normalize_props(apr_hash_t **normal_props, apr_hash_t *props, apr_pool_t *result_pool) { apr_hash_index_t *hi; + apr_pool_t *iterpool; *normal_props = apr_hash_make(result_pool); + iterpool = svn_pool_create(result_pool); for (hi = apr_hash_first(result_pool, props); hi; hi = apr_hash_next(hi)) { const char *key = apr_hash_this_key(hi); const svn_string_t *value = apr_hash_this_val(hi); - SVN_ERR(svn_rdump__normalize_prop(key, &value, - result_pool)); + svn_pool_clear(iterpool); + SVN_ERR(svn_repos__normalize_prop(&value, NULL, key, value, + result_pool, iterpool)); svn_hash_sets(*normal_props, key, value); } + svn_pool_destroy(iterpool); + return SVN_NO_ERROR; } |