[FORMAT] - Bail out when detecting invalid root path, instead of asking to insert a disk

See issue #4067 for more details.

svn path=/trunk/; revision=46721
This commit is contained in:
Gregor Schneider 2010-04-04 18:24:28 +00:00
parent 7be442943e
commit a842dbcce0

View file

@ -363,6 +363,12 @@ _tmain(int argc, TCHAR *argv[])
PrintWin32Error( szMsg, GetLastError());
return -1;
}
else if ( driveType == 1 )
{
LoadString( GetModuleHandle(NULL), STRING_NO_VOLUME, (LPTSTR) szMsg,RC_STRING_MAX_SIZE);
PrintWin32Error( szMsg, GetLastError());
return -1;
}
if( driveType != DRIVE_FIXED ) {
LoadString( GetModuleHandle(NULL), STRING_INSERT_DISK, (LPTSTR) szMsg,RC_STRING_MAX_SIZE);