diff options
Diffstat (limited to 'locale/programs/ld-time.c')
-rw-r--r-- | locale/programs/ld-time.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/locale/programs/ld-time.c b/locale/programs/ld-time.c index b08906ef3e..9ec58f6487 100644 --- a/locale/programs/ld-time.c +++ b/locale/programs/ld-time.c @@ -436,9 +436,10 @@ time_finish (struct localedef_t *locale, struct charmap_t *charmap) wstr = wstr ? wcschr (wstr + 1, L':') : NULL; /* end offset */ wstr = wstr ? wcschr (wstr + 1, L':') : NULL; /* end start */ wstr = wstr ? wcschr (wstr + 1, L':') : NULL; /* end end */ - time->era_entries[idx].wname = (uint32_t *) wstr; + time->era_entries[idx].wname = (uint32_t *) wstr + 1; wstr = wstr ? wcschr (wstr + 1, L':') : NULL; /* end name */ - time->era_entries[idx].wformat = (uint32_t *) wstr; + *wstr = L'\0'; + time->era_entries[idx].wformat = (uint32_t *) wstr + 1; } } |