setupapi: Fix a compiler warning.
This commit is contained in:
parent
17afb0ddd4
commit
838823b008
|
@ -375,6 +375,7 @@ static void *load_fake_dll( const WCHAR *name, unsigned int *size, void *buf, un
|
||||||
ptr = prepend( ptr, path, strlen(path) );
|
ptr = prepend( ptr, path, strlen(path) );
|
||||||
if ((fd = open( ptr, O_RDONLY | O_BINARY )) != -1) goto found;
|
if ((fd = open( ptr, O_RDONLY | O_BINARY )) != -1) goto found;
|
||||||
}
|
}
|
||||||
|
goto done;
|
||||||
|
|
||||||
found:
|
found:
|
||||||
if (!fstat( fd, &st ))
|
if (!fstat( fd, &st ))
|
||||||
|
|
Loading…
Reference in New Issue