[KERNEL32]: Add a DPRINT1 when failing GetCPInfo in kernel32, to highlight the fact our MSVCRT is sending us bogus codepage/locale IDs.

svn path=/trunk/; revision=59930
This commit is contained in:
Alex Ionescu 2013-08-31 19:24:54 +00:00
parent 17e4a83527
commit b3ae8180d3

View file

@ -1747,6 +1747,7 @@ GetCPInfo(UINT CodePage,
return TRUE;
}
DPRINT1("Invalid CP!: %lx\n", CodePage);
SetLastError( ERROR_INVALID_PARAMETER );
return FALSE;
}