You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/09/24 12:32:02 UTC

svn commit: r1389276 - /subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c

Author: stefan2
Date: Mon Sep 24 10:32:02 2012
New Revision: 1389276

URL: http://svn.apache.org/viewvc?rev=1389276&view=rev
Log:
On the 10Gb branch: prevent unnecessary canonicalization.

* subversion/libsvn_fs_fs/tree.c
  (get_root): use "/" instead of "" for a root path

Modified:
    subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c

Modified: subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c
URL: http://svn.apache.org/viewvc/subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c?rev=1389276&r1=1389275&r2=1389276&view=diff
==============================================================================
--- subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c (original)
+++ subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c Mon Sep 24 10:32:02 2012
@@ -1382,7 +1382,7 @@ fs_props_changed(svn_boolean_t *changed_
 static svn_error_t *
 get_root(dag_node_t **node, svn_fs_root_t *root, apr_pool_t *pool)
 {
-  return get_dag(node, root, "", pool);
+  return get_dag(node, root, "/", pool);
 }