[Box Backup-commit] COMMIT r2885 - box/trunk/lib/win32

subversion at boxbackup.org subversion at boxbackup.org
Sun Mar 27 02:02:42 BST 2011


Author: chris
Date: 2011-03-27 02:02:42 +0100 (Sun, 27 Mar 2011)
New Revision: 2885

Modified:
   box/trunk/lib/win32/emu.cpp
Log:
Fix off-by-one causing incomplete normalisation of relative paths.


Modified: box/trunk/lib/win32/emu.cpp
===================================================================
--- box/trunk/lib/win32/emu.cpp	2011-03-27 01:02:19 UTC (rev 2884)
+++ box/trunk/lib/win32/emu.cpp	2011-03-27 01:02:42 UTC (rev 2885)
@@ -439,7 +439,7 @@
 					"");
 			}
 
-			i = lastSlash;
+			i = lastSlash - 1;
 		}
 	}
 




More information about the Boxbackup-commit mailing list