summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixThrd.c
diff options
context:
space:
mode:
authorvasiljevic <vasiljevic@noemail.net>2003-05-12 08:41:14 (GMT)
committervasiljevic <vasiljevic@noemail.net>2003-05-12 08:41:14 (GMT)
commit355763472b827e2a816b7828093a5200f7b781c4 (patch)
tree455a373b7f95b7a4362980854444b9c5cf2b90d9 /unix/tclUnixThrd.c
parent6f64e790772e9471291a3e10e7361b086aa06056 (diff)
downloadtcl-355763472b827e2a816b7828093a5200f7b781c4.zip
tcl-355763472b827e2a816b7828093a5200f7b781c4.tar.gz
tcl-355763472b827e2a816b7828093a5200f7b781c4.tar.bz2
Corrected the Tcl bug #723502
FossilOrigin-Name: dfd2222f302c951c5227d10d1016cc1c568c37d4
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r--unix/tclUnixThrd.c2
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);