Oops! Typos...

svn path=/trunk/; revision=1066
This commit is contained in:
Eric Kohl 2000-03-16 21:50:56 +00:00
parent ef5f880bac
commit 40ee84e997

View file

@ -1,4 +1,4 @@
/* $Id: curdir.c,v 1.23 2000/03/16 20:50:48 dwelch Exp $ /* $Id: curdir.c,v 1.24 2000/03/16 21:50:56 ekohl Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries * PROJECT: ReactOS system libraries
@ -307,7 +307,7 @@ GetWindowsDirectoryA (
if (lpBuffer == NULL) if (lpBuffer == NULL)
return 0; return 0;
Length = RtlUnicodeStringToAnsiSize (&SystemDirectory); Length = RtlUnicodeStringToAnsiSize (&WindowsDirectory);
if (uSize > Length) if (uSize > Length)
{ {
String.Length = 0; String.Length = 0;
@ -341,11 +341,11 @@ GetWindowsDirectoryW (
if (lpBuffer == NULL) if (lpBuffer == NULL)
return 0; return 0;
Length = SystemDirectory.Length / sizeof (WCHAR); Length = WindowsDirectory.Length / sizeof (WCHAR);
if (uSize > Length) if (uSize > Length)
{ {
memmove (lpBuffer, memmove (lpBuffer,
SystemDirectory.Buffer, WindowsDirectory.Buffer,
Length); Length);
lpBuffer[Length] = 0; lpBuffer[Length] = 0;
} }