From 7ef2dcbe22111107214aad62544db6d0780f379d Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Mon, 11 Jul 2011 01:22:01 +0000 Subject: [PATCH] [NTDLL]: Always compile your code before comitting, like my cat used to say. svn path=/trunk/; revision=52626 --- reactos/lib/rtl/path.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/lib/rtl/path.c b/reactos/lib/rtl/path.c index b86fdd2654b..5e2b060c8cf 100644 --- a/reactos/lib/rtl/path.c +++ b/reactos/lib/rtl/path.c @@ -167,7 +167,7 @@ NTAPI RtlGetCurrentDirectory_U(IN ULONG MaximumLength, IN PWSTR Buffer) { - ULONG Length; + ULONG Length, Bytes; PCURDIR CurDir; PWSTR CurDirName; DPRINT("RtlGetCurrentDirectory %lu %p\n", MaximumLength, Buffer); @@ -183,7 +183,7 @@ RtlGetCurrentDirectory_U(IN ULONG MaximumLength, /* Check for x:\ vs x:\path\foo (note the trailing slash) */ Bytes = Length * sizeof(WCHAR); - if ((Length <= 1) || (CurDirName[Length - 2] == ":")) + if ((Length <= 1) || (CurDirName[Length - 2] == L':')) { /* Check if caller does not have enough space */ if (MaximumLength <= Bytes) @@ -211,7 +211,7 @@ RtlGetCurrentDirectory_U(IN ULONG MaximumLength, ASSERT(Buffer[Length - 1] == L'\\'); /* Again check for our two cases (drive root vs path) */ - if ((Length <= 1) || (Buffer[Length - 2] != ":")) + if ((Length <= 1) || (Buffer[Length - 2] != L':')) { /* Replace the trailing slash with a null */ Buffer[Length - 1] = UNICODE_NULL;