Author: gschneider Date: Sun Apr 4 20:24:28 2010 New Revision: 46721
URL: http://svn.reactos.org/svn/reactos?rev=46721&view=rev Log: [FORMAT] - Bail out when detecting invalid root path, instead of asking to insert a disk See issue #4067 for more details.
Modified: trunk/reactos/base/system/format/format.c
Modified: trunk/reactos/base/system/format/format.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/format/format.c... ============================================================================== --- trunk/reactos/base/system/format/format.c [iso-8859-1] (original) +++ trunk/reactos/base/system/format/format.c [iso-8859-1] Sun Apr 4 20:24:28 2010 @@ -363,6 +363,12 @@ 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);