"Alistair Leslie-Hughes" <[EMAIL PROTECTED]> writes:
> Is there any thing wrong with this patch?
>> +/* Test invalid size */
>> +szDest[0] = 'A';
>> +ret = p_wcscpy_s(szDest, 0, szLongText);
>> +ok(ret == EINVAL, "expected ERANGE got %d\n", ret);
>> +ok(szDest[0] == 0, "szD
Hi,
Is there any thing wrong with this patch?
Best Regards
Alistair Leslie-Hughes
"Alistair Leslie-Hughes" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
> Correct msvcrt.spec file
>
> Changelog:
&g
"Alistair Leslie-Hughes" <[EMAIL PROTECTED]> wrote:
> --- a/dlls/msvcrt/msvcrt.spec
> +++ b/dlls/msvcrt/msvcrt.spec
> @@ -761,6 +761,7 @@
> @ cdecl wcscmp(wstr wstr) ntdll.wcscmp
> @ cdecl wcscoll(wstr wstr) MSVCRT_wcscoll
> @ cdecl wcscpy(ptr wstr) ntdll.wcscpy
> +@ cdecl wcscpy_s(wstr long wstr)