diff options
author | Kevin B Kenny <kennykb@acm.org> | 2012-01-08 20:49:22 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2012-01-08 20:49:22 (GMT) |
commit | 7c268958b4f0eb1414d526c54336735e29c9544c (patch) | |
tree | b8f4fa7c3a644a757c2520705ad9f4a03644bbdf /unix | |
parent | b03d5ce82b6aa3bb485f5a5ffd2f4502718988b6 (diff) | |
parent | 21cf79b98c38e05e40e0fccfb2a6b00cd9224792 (diff) | |
download | tcl-7c268958b4f0eb1414d526c54336735e29c9544c.zip tcl-7c268958b4f0eb1414d526c54336735e29c9544c.tar.gz tcl-7c268958b4f0eb1414d526c54336735e29c9544c.tar.bz2 |
Fix loading of timezones where one abbreviation is a proper suffix of another [Bug 3470928]
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclLoadDl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c index 96f0717..9084089 100644 --- a/unix/tclLoadDl.c +++ b/unix/tclLoadDl.c @@ -210,6 +210,7 @@ UnloadFile( { void *handle = loadHandle->clientData; + fprintf(stderr, "dlclose???\n"); fflush(stderr); dlclose(handle); ckfree(loadHandle); } |