Author: rhuijben
Date: Sat Jan 19 12:47:55 2013
New Revision: 1435531
URL: http://svn.apache.org/viewvc?rev=1435531&view=rev
Log:
* subversion/libsvn_wc/status.c
(stat_wc_dirent_case_sensitive): Add performance note.
Modified:
subversion/trunk/subversion/libsvn_wc/status.c
Modified: subversion/trunk/subversion/libsvn_wc/status.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/status.c?rev=1435531&r1=1435530&r2=1435531&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/status.c (original)
+++ subversion/trunk/subversion/libsvn_wc/status.c Sat Jan 19 12:47:55 2013
@@ -2710,6 +2710,9 @@ stat_wc_dirent_case_sensitive(const svn_
/* The wcroot is "" inside the wc; handle it as not in the wc, as
the case of the root is indifferent to us. */
+
+ /* Note that for performance this is really just a few hashtable lookups,
+ as we just used local_abspath for a db call in both our callers */
SVN_ERR(svn_wc__db_is_wcroot(&is_wcroot, db, local_abspath,
scratch_pool));