diff options
Diffstat (limited to 'src/LYCookie.c')
-rw-r--r-- | src/LYCookie.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LYCookie.c b/src/LYCookie.c index ca6f4cf0..54b12060 100644 --- a/src/LYCookie.c +++ b/src/LYCookie.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYCookie.c,v 1.106 2010/11/07 21:21:02 tom Exp $ + * $LynxId: LYCookie.c,v 1.107 2010/12/08 09:42:15 tom Exp $ * * Lynx Cookie Support LYCookie.c * =================== @@ -134,7 +134,7 @@ static void MemAllocCopy(char **dest, temp = typecallocn(char, (unsigned)(end - start) + 1); if (temp == NULL) outofmem(__FILE__, "MemAllocCopy"); - LYStrNCpy(temp, start, (int) (end - start)); + LYStrNCpy(temp, start, (end - start)); HTSACopy(dest, temp); FREE(temp); } |