Fix search of driver on removable media

svn path=/trunk/; revision=22074
This commit is contained in:
Hervé Poussineau 2006-05-27 13:03:04 +00:00
parent 979f267d03
commit 2708096c09

View file

@ -309,7 +309,6 @@ SearchDriver(
return TRUE;
}
static BOOL
IsDots(IN LPCTSTR str)
{
@ -373,7 +372,10 @@ SearchDriverRecursive(
_tcscpy(FullPath, DirPath);
_tcscat(FullPath, FileName);
if (SearchDriverRecursive(DevInstData, FullPath))
{
retval = TRUE;
break;
}
}
else
{