diff options
| author | zv@archiware.com <vasiljevic> | 2003-05-12 08:43:25 (GMT) |
|---|---|---|
| committer | zv@archiware.com <vasiljevic> | 2003-05-12 08:43:25 (GMT) |
| commit | a04373669abce880a725fa19bf71881ca4bf9e10 (patch) | |
| tree | dec55a331d29462d7b0d1e809bd367484aac66d6 /unix | |
| parent | 95cf1a159c2009ec38e9201e1026022983ef763b (diff) | |
| download | tcl-a04373669abce880a725fa19bf71881ca4bf9e10.zip tcl-a04373669abce880a725fa19bf71881ca4bf9e10.tar.gz tcl-a04373669abce880a725fa19bf71881ca4bf9e10.tar.bz2 | |
Corrected Tcl bug #723502
Diffstat (limited to 'unix')
| -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); |
