3 modified files
reactos/drivers/fs/ntfs
diff -u -r1.4 -r1.5
--- create.c 5 Jun 2004 08:28:37 -0000 1.4
+++ create.c 24 Nov 2004 11:02:15 -0000 1.5
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: create.c,v 1.4 2004/06/05 08:28:37 navaraf Exp $
+/* $Id: create.c,v 1.5 2004/11/24 11:02:15 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -47,7 +47,7 @@
DPRINT("try related for %S\n", pRelativeFileName);
Fcb = pFileObject->FsContext;
- assert(Fcb);
+ ASSERT(Fcb);
/* verify related object is a directory and target name
don't start with \. */
@@ -58,7 +58,7 @@
}
/* construct absolute path name */
- assert(wcslen (Fcb->PathName) + 1 + wcslen (pRelativeFileName) + 1
+ ASSERT(wcslen (Fcb->PathName) + 1 + wcslen (pRelativeFileName) + 1
<= MAX_PATH);
rcName = ExAllocatePool(NonPagedPool, MAX_PATH * sizeof(WCHAR));
if (!rcName)
@@ -169,9 +169,9 @@
DPRINT("NtfsCreateFile() called\n");
DeviceExt = DeviceObject->DeviceExtension;
- assert (DeviceExt);
+ ASSERT(DeviceExt);
Stack = IoGetCurrentIrpStackLocation (Irp);
- assert (Stack);
+ ASSERT(Stack);
RequestedDisposition = ((Stack->Parameters.Create.Options >> 24) & 0xff);
// RequestedOptions =
reactos/drivers/fs/ntfs
diff -u -r1.11 -r1.12
--- fcb.c 5 Jun 2004 08:28:37 -0000 1.11
+++ fcb.c 24 Nov 2004 11:02:15 -0000 1.12
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: fcb.c,v 1.11 2004/06/05 08:28:37 navaraf Exp $
+/* $Id: fcb.c,v 1.12 2004/11/24 11:02:15 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -452,9 +452,9 @@
LARGE_INTEGER StreamOffset;
PVOID Context;
- assert(DeviceExt);
- assert(DirectoryFcb);
- assert(FileToFind);
+ ASSERT(DeviceExt);
+ ASSERT(DirectoryFcb);
+ ASSERT(FileToFind);
DPRINT("NtfsDirFindFile(VCB:%08x, dirFCB:%08x, File:%S)\n",
DeviceExt,
reactos/drivers/fs/ntfs
diff -u -r1.3 -r1.4
--- finfo.c 5 Jun 2004 08:28:37 -0000 1.3
+++ finfo.c 24 Nov 2004 11:02:15 -0000 1.4
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: finfo.c,v 1.3 2004/06/05 08:28:37 navaraf Exp $
+/* $Id: finfo.c,v 1.4 2004/11/24 11:02:15 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -52,8 +52,8 @@
return(STATUS_BUFFER_OVERFLOW);
/* PRECONDITION */
- assert(StandardInfo != NULL);
- assert(Fcb != NULL);
+ ASSERT(StandardInfo != NULL);
+ ASSERT(Fcb != NULL);
RtlZeroMemory(StandardInfo,
sizeof(FILE_STANDARD_INFORMATION));
@@ -137,8 +137,8 @@
DPRINT("NtfsGetNameInformation() called\n");
- assert(NameInfo != NULL);
- assert(Fcb != NULL);
+ ASSERT(NameInfo != NULL);
+ ASSERT(Fcb != NULL);
NameLength = wcslen(Fcb->PathName) * sizeof(WCHAR);
// NameLength = 2;
@@ -165,8 +165,8 @@
{
DPRINT("NtfsGetInternalInformation() called\n");
- assert(InternalInfo);
- assert(Fcb);
+ ASSERT(InternalInfo);
+ ASSERT(Fcb);
if (*BufferLength < sizeof(FILE_INTERNAL_INFORMATION))
return(STATUS_BUFFER_OVERFLOW);
CVSspam 0.2.8