mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
- Don't try to perform "mkdir Z:" (where Z: is your ROS_INSTALL target disk), that's meaningless. Fixes an exception when built with MSVC.
svn path=/trunk/; revision=30980
This commit is contained in:
parent
3f543f3230
commit
56568e2d0c
1 changed files with 1 additions and 0 deletions
|
@ -125,6 +125,7 @@ Directory::CreateDirectory ( const string& path )
|
|||
if ( isalpha ( path[0] ) && path[1] == ':' && path[2] == cSep )
|
||||
{
|
||||
nextIndex = path.find ( cSep, 3);
|
||||
index = path.find ( cSep );
|
||||
}
|
||||
else
|
||||
nextIndex = path.find ( cSep );
|
||||
|
|
Loading…
Reference in a new issue