Author: cgutman
Date: Sun Jul 31 19:16:48 2011
New Revision: 53007

URL: http://svn.reactos.org/svn/reactos?rev=53007&view=rev
Log:
[FREELDR]
- Skip the floppy drive if the reset command failed

Modified:
    trunk/reactos/boot/freeldr/freeldr/arch/i386/hardware.c

Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/hardware.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/i386/hardware.c?rev=53007&r1=53006&r2=53007&view=diff
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/arch/i386/hardware.c [iso-8859-1] 
(original)
+++ trunk/reactos/boot/freeldr/freeldr/arch/i386/hardware.c [iso-8859-1] Sun 
Jul 31 19:16:48 2011
@@ -670,7 +670,8 @@
     if ((FloppyType > 5) || (FloppyType == 0))
       continue;
 
-    DiskResetController(FloppyNumber);
+    if (!DiskResetController(FloppyNumber))
+        continue;
 
     Ptr = GetInt1eTable();
 


Reply via email to