Commit d10fe185 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

kernelbase: Fix an ASCII / ANSI mixup in a comment.

parent 2ee13997
......@@ -1651,7 +1651,7 @@ LSTATUS WINAPI DECLSPEC_HOTPATCH RegQueryValueExA( HKEY hkey, LPCSTR name, LPDWO
if (status && status != STATUS_BUFFER_OVERFLOW) goto done;
/* we need to fetch the contents for a string type even if not requested,
* because we need to compute the length of the ASCII string. */
* because we need to compute the length of the ANSI string. */
if (data || is_string(info->Type))
{
/* retry with a dynamically allocated buffer */
......@@ -2106,7 +2106,7 @@ LSTATUS WINAPI RegEnumValueA( HKEY hkey, DWORD index, LPSTR value, LPDWORD val_c
buffer, total_size, &total_size );
/* we need to fetch the contents for a string type even if not requested,
* because we need to compute the length of the ASCII string. */
* because we need to compute the length of the ANSI string. */
/* retry with a dynamically allocated buffer */
while (status == STATUS_BUFFER_OVERFLOW)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment