You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2010/01/21 13:34:58 UTC

svn commit: r901681 - /subversion/trunk/subversion/libsvn_wc/status.c

Author: rhuijben
Date: Thu Jan 21 12:34:56 2010
New Revision: 901681

URL: http://svn.apache.org/viewvc?rev=901681&view=rev
Log:
* subversion/libsvn_wc/status.c
  (internal_status): Following up on r901677, check for root paths
    in the parent entry check code instead of the old path empty
    check that didn't work for absolute paths.

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=901681&r1=901680&r2=901681&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/status.c (original)
+++ subversion/trunk/subversion/libsvn_wc/status.c Thu Jan 21 12:34:56 2010
@@ -2377,7 +2377,7 @@
         entry = NULL;
     }  
 
-  if (entry)
+  if (entry && !svn_dirent_is_root(local_abspath, strlen(local_abspath)))
     {
       const char *parent_abspath = svn_dirent_dirname(local_abspath,
                                                       scratch_pool);