Differences From Artifact [ac36acf541]:
- File generic/tclIOSock.c — part of check-in [a33e22b6ba] at 2019-05-22 07:32:37 on branch utf-max — More WIP: eliminate all usage of (platform-specific) Tcl_WinTCharToUtf()/Tcl_WinUtfToTChar() to its proposed portable replacements: Tcl_Utf16ToUtfDString()/Tcl_UtfToUtf16DString() This allows for Tcl_WinTCharToUtf()/Tcl_WinUtfToTChar() to be declared deprecated. (user: jan.nijtmans size: 8297)
To Artifact [fac361e276]:
- File generic/tclIOSock.c — part of check-in [8819e7a6a3] at 2019-08-01 11:55:40 on branch utf-max — Merge tip-548 (user: jan.nijtmans size: 8298) [more...]
| ︙ | |||
31 32 33 34 35 36 37 | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | - + |
if (tsdPtr->initialized) {
Tcl_DStringFree(&tsdPtr->errorMsg);
} else {
tsdPtr->initialized = 1;
}
Tcl_DStringInit(&tsdPtr->errorMsg);
|
| ︙ |