Problem in function in_skipped_tree of libsvn_wc\update_editor.c
From: Marc Haesen <Marc.Haesen_at_oneaccess-net.com>
Date: Thu, 4 Dec 2008 15:50:03 +0100
When running the following script in c:\ in windows I get an endless
svnadmin create repos
svn co file:///repos wc1
cd wc1
svn mkdir dir1
svn -m "1" commit
cd dir1
echo line1 > file1.c
echo line2 >> file1.c
svn add file1.c
cd ..
svn -m"1" commit
cd dir1
svn up \wc1
I have debugged the problem and the endless loop is inside the
The reason is the svn_path_dirname function with "/" as input returns
There are 2 ways to fix the problem:
- make sure svn_path_dirname returns an empty string with "/"
- replace the loop test while (! svn_path_is_empty(path)) by
I have used revision 34550 of trunk on windows.
Regards,
Marc
------------------------------------------------------
|
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.