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=5427
This commit is contained in:
James Tabor 2003-08-05 23:30:03 +00:00
parent 0275f1127b
commit 5c18315741

View file

@ -22,7 +22,8 @@ void _splitpath(const char* path, char* drive, char* dir, char* fname, char* ext
}
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;
}