diff options
author | dgp <dgp@users.sourceforge.net> | 2013-09-16 18:59:14 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-09-16 18:59:14 (GMT) |
commit | b0e7980ba4b61bfc9867143b3a08fe0d74894690 (patch) | |
tree | beaad334c814a35e3e90e6297ed8886ee837c853 /unix/tclUnixFCmd.c | |
parent | ee5dada68d84581a9b0c3ac970c11b862f0eb186 (diff) | |
parent | fe8ae4eafcd82339318ba2c288431d00bbee06d9 (diff) | |
download | tcl-b0e7980ba4b61bfc9867143b3a08fe0d74894690.zip tcl-b0e7980ba4b61bfc9867143b3a08fe0d74894690.tar.gz tcl-b0e7980ba4b61bfc9867143b3a08fe0d74894690.tar.bz2 |
merge trunk; update changes
Diffstat (limited to 'unix/tclUnixFCmd.c')
-rw-r--r-- | unix/tclUnixFCmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c index e27f78f..e270b6a 100644 --- a/unix/tclUnixFCmd.c +++ b/unix/tclUnixFCmd.c @@ -462,10 +462,10 @@ DoCopyFile( switch ((int) (statBufPtr->st_mode & S_IFMT)) { #ifndef DJGPP case S_IFLNK: { - char linkBuf[MAXPATHLEN]; + char linkBuf[MAXPATHLEN+1]; int length; - length = readlink(src, linkBuf, sizeof(linkBuf)); + length = readlink(src, linkBuf, MAXPATHLEN); /* INTL: Native. */ if (length == -1) { return TCL_ERROR; |