aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-11-08 15:06:58 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-11-08 15:06:58 +0000
commit0ffec712e1b6479ff236d387c3d6b17d66f61881 (patch)
tree79eae4ab5ea80132c08feb9cc8dbab5d7cfcf983 /lib
parent6ebac3dc7608b08c943b3b6d7fb47678babe2ddc (diff)
Marcus Webster reported and fixed this read-one-byte-too-many problem...
Diffstat (limited to 'lib')
-rw-r--r--lib/formdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/formdata.c b/lib/formdata.c
index e0c487dc6..ef5e15374 100644
--- a/lib/formdata.c
+++ b/lib/formdata.c
@@ -923,7 +923,7 @@ static int AddFormData(struct FormData **formp,
length = strlen((char *)line);
newform->line = (char *)malloc(length+1);
- memcpy(newform->line, line, length+1);
+ memcpy(newform->line, line, length);
newform->length = length;
newform->line[length]=0; /* zero terminate for easier debugging */