Author: pschweitzer Date: Thu Jul 3 02:32:14 2008 New Revision: 34278
URL: http://svn.reactos.org/svn/reactos?rev=34278&view=rev Log: Apply same fix to trunk, but without commented out code. This fixes ReactOS freezes when installing VMware driver using vmwinst and browsing a NTFS volume...
Modified: trunk/reactos/drivers/filesystems/ntfs/fcb.c
Modified: trunk/reactos/drivers/filesystems/ntfs/fcb.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/ntfs/fc... ============================================================================== --- trunk/reactos/drivers/filesystems/ntfs/fcb.c [iso-8859-1] (original) +++ trunk/reactos/drivers/filesystems/ntfs/fcb.c [iso-8859-1] Thu Jul 3 02:32:14 2008 @@ -99,8 +99,6 @@ ExInitializeResourceLite(&Fcb->MainResource);
Fcb->RFCB.Resource = &(Fcb->MainResource); - - InsertTailList(&(Vcb->FcbListHead), &(Fcb->FcbListEntry));
return(Fcb); } @@ -113,8 +111,6 @@ ASSERT(Fcb->Identifier.Type == NTFS_TYPE_FCB);
ExDeleteResourceLite(&Fcb->MainResource); - - RemoveEntryList(&(Fcb->FcbListEntry));
ExFreePool(Fcb); }