diff options
author | vasiljevic <zv@archiware.com> | 2003-05-12 08:41:15 (GMT) |
---|---|---|
committer | vasiljevic <zv@archiware.com> | 2003-05-12 08:41:15 (GMT) |
commit | ec182fda6d0885ae2ff8cb248e20fbc6605754f5 (patch) | |
tree | 455a373b7f95b7a4362980854444b9c5cf2b90d9 /unix/tclUnixThrd.c | |
parent | 1df1a5e7e8cd46a3c9858b816e3f8836f6f39c18 (diff) | |
download | tcl-ec182fda6d0885ae2ff8cb248e20fbc6605754f5.zip tcl-ec182fda6d0885ae2ff8cb248e20fbc6605754f5.tar.gz tcl-ec182fda6d0885ae2ff8cb248e20fbc6605754f5.tar.bz2 |
Corrected the Tcl bug #723502
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r-- | unix/tclUnixThrd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c index ebfd322..d5f1e54 100644 --- a/unix/tclUnixThrd.c +++ b/unix/tclUnixThrd.c @@ -819,7 +819,7 @@ TclpReaddir(DIR * dir) # endif /* HAVE_STRUCT_DIRENT64 */ if (ent != NULL) { memcpy((VOID *) &tsdPtr->rdbuf.ent, (VOID *) ent, - sizeof(&tsdPtr->rdbuf)); + sizeof(tsdPtr->rdbuf)); ent = &tsdPtr->rdbuf.ent; } Tcl_MutexUnlock(&rdMutex); |