diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-10-11 21:52:57 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-10-11 21:52:57 (GMT) |
| commit | 7dd13b72b6620cba05c004b954ea3df251420910 (patch) | |
| tree | 4a830dcdd04884ee7552dabfd033c6428ec70f0f /unix/tclUnixInit.c | |
| parent | 11e9b6a9a5b0d4c50831216c87d9357518e71a30 (diff) | |
| parent | 54c0881e9d6deab242839da14f2f4d3dfe05df5b (diff) | |
| download | tcl-7dd13b72b6620cba05c004b954ea3df251420910.zip tcl-7dd13b72b6620cba05c004b954ea3df251420910.tar.gz tcl-7dd13b72b6620cba05c004b954ea3df251420910.tar.bz2 | |
Fix [3cc1d91345]: duplicate calls to TclpFreeAllocCache() on thread exists
Diffstat (limited to 'unix/tclUnixInit.c')
| -rw-r--r-- | unix/tclUnixInit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index 91fb986..31177a3 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -761,7 +761,7 @@ TclpSetVariables( CFLocaleRef localeRef; - if (CFLocaleCopyCurrent != NULL && CFLocaleGetIdentifier != NULL && + if (&CFLocaleCopyCurrent != NULL && &CFLocaleGetIdentifier != NULL && (localeRef = CFLocaleCopyCurrent())) { CFStringRef locale = CFLocaleGetIdentifier(localeRef); |
