Commit 2d23512d authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Don't depend on how __lc_time_data was allocated in _W_Getdays.

parent 66d70266
......@@ -494,11 +494,14 @@ MSVCRT_wchar_t* CDECL _W_Getdays(void)
{
MSVCRT___lc_time_data *cur = get_locinfo()->lc_time_curr;
MSVCRT_wchar_t *out;
int i, len, size;
int i, len, size = 0;
TRACE("\n");
size = cur->wstr.names.short_mon[0]-cur->wstr.names.short_wday[0];
for(i=0; i<7; i++) {
size += strlenW(cur->wstr.names.short_wday[i]) + 1;
size += strlenW(cur->wstr.names.wday[i]) + 1;
}
out = MSVCRT_malloc((size+1)*sizeof(*out));
if(!out)
return NULL;
......
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