aboutsummaryrefslogtreecommitdiff
path: root/src/common/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/util.c')
-rw-r--r--src/common/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c
index ced770e57..d62be23e6 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -171,7 +171,7 @@ char *tor_strndup(const char *s, size_t n) {
* this function gets called a whole lot, and platform strncpy is
* much faster than strlcpy when strlen(s) is much longer than n.
*/
- strncpy(dup, s, n+1);
+ strncpy(dup, s, n);
dup[n]='\0';
return dup;
}