Commit e4f3dea2 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

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

parent 2d23512d
...@@ -530,12 +530,15 @@ MSVCRT_wchar_t* CDECL _W_Getdays(void) ...@@ -530,12 +530,15 @@ MSVCRT_wchar_t* CDECL _W_Getdays(void)
char* CDECL _Getmonths(void) char* CDECL _Getmonths(void)
{ {
MSVCRT___lc_time_data *cur = get_locinfo()->lc_time_curr; MSVCRT___lc_time_data *cur = get_locinfo()->lc_time_curr;
int i, len, size; int i, len, size = 0;
char *out; char *out;
TRACE("\n"); TRACE("\n");
size = cur->str.names.am-cur->str.names.short_mon[0]; for(i=0; i<12; i++) {
size += strlen(cur->str.names.short_mon[i]) + 1;
size += strlen(cur->str.names.mon[i]) + 1;
}
out = MSVCRT_malloc(size+1); out = MSVCRT_malloc(size+1);
if(!out) if(!out)
return NULL; 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