mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Found problem when copy file to C:\TEST, output result was C:TEST, which placed it in current directory. CMD copy is still buggy.
svn path=/trunk/; revision=5430
This commit is contained in:
@@ -21,7 +21,9 @@ void _splitpath( const char *path, char *drive, char *dir, char *fname, char *ex
|
||||
}
|
||||
|
||||
tmp_dir = (char *)strrchr(path,'\\');
|
||||
if( tmp_dir != NULL && tmp_dir != tmp_drive + 1 ) {
|
||||
// if( tmp_dir != NULL && tmp_dir != tmp_drive + 1 )
|
||||
if( tmp_dir != NULL )
|
||||
{
|
||||
strncpy(dir,tmp_drive+1,tmp_dir - tmp_drive);
|
||||
*(dir + (tmp_dir - tmp_drive)) = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user