diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-04-17 15:37:29 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-04-17 15:37:29 (GMT) |
| commit | eaf82a22e79a98f88175f54292031abf6415c998 (patch) | |
| tree | 9972e01743b7cbd257250cf08ce7ac4d9f4699f8 | |
| parent | f78e49764e59358677f00c3e2d964ff576a45664 (diff) | |
| parent | 035c656deee62635905513440a2f92a17539f911 (diff) | |
| download | tcl-eaf82a22e79a98f88175f54292031abf6415c998.zip tcl-eaf82a22e79a98f88175f54292031abf6415c998.tar.gz tcl-eaf82a22e79a98f88175f54292031abf6415c998.tar.bz2 | |
Merge 8.7
| -rw-r--r-- | generic/tclClock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclClock.c b/generic/tclClock.c index 2ec7a37..dfde051 100644 --- a/generic/tclClock.c +++ b/generic/tclClock.c @@ -4699,7 +4699,7 @@ TzsetIfNecessary(void) if (tz.was != NULL && tz.was != TZ_INIT_MARKER) { Tcl_Free(tz.was); } - tz.was = (WCHAR *) Tcl_Alloc(sizeof(WCHAR) * (wcslen(tzNow) + 1)); + tz.was = (WCHAR *)Tcl_Alloc(sizeof(WCHAR) * (wcslen(tzNow) + 1)); wcscpy(tz.was, tzNow); epoch = ++tz.epoch; } else if (tzNow == NULL && tz.was != NULL) { |
