mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
- Revert the last changes. Support for removable medias needs more investigations.
svn path=/trunk/; revision=4974
This commit is contained in:
parent
c2f1fc8975
commit
8aca12db20
1 changed files with 1 additions and 10 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: create.c,v 1.59 2003/06/24 21:34:41 ekohl Exp $
|
/* $Id: create.c,v 1.60 2003/06/26 22:01:02 hbirr Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
* FILE: services/fs/vfat/create.c
|
* FILE: services/fs/vfat/create.c
|
||||||
|
@ -536,15 +536,6 @@ VfatCreateFile (PDEVICE_OBJECT DeviceObject, PIRP Irp)
|
||||||
return(STATUS_INVALID_PARAMETER);
|
return(STATUS_INVALID_PARAMETER);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Verify volume */
|
|
||||||
Status = IoVerifyVolume (DeviceExt->StorageDevice,
|
|
||||||
FALSE);
|
|
||||||
if (!NT_SUCCESS (Status))
|
|
||||||
{
|
|
||||||
DPRINT("IoVerifyVolume() failed (Status %lx)\n", Status);
|
|
||||||
return Status;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* This a open operation for the volume itself */
|
/* This a open operation for the volume itself */
|
||||||
if (FileObject->FileName.Length == 0 &&
|
if (FileObject->FileName.Length == 0 &&
|
||||||
FileObject->RelatedFileObject == NULL)
|
FileObject->RelatedFileObject == NULL)
|
||||||
|
|
Loading…
Reference in a new issue