From: Nick Mathewson Date: Sun, 18 Jun 2006 07:37:21 +0000 (+0000) Subject: remove non-germane comment X-Git-Tag: tor-0.1.1.23~204 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73ada60d64d9a97309cbf01b4b1b2c4b1bb3b8b3;p=thirdparty%2Ftor.git remove non-germane comment svn:r6640 --- diff --git a/src/common/util.c b/src/common/util.c index 00888aa72f..33ce40d165 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -198,10 +198,6 @@ _tor_memdup(const void *mem, size_t len DMALLOC_PARAMS) char *dup; tor_assert(mem); dup = _tor_malloc(len DMALLOC_FN_ARGS); - /* Performance note: Ordinarily we prefer strlcpy to strncpy. But - * this function gets called a whole lot, and platform strncpy is - * much faster than strlcpy when strlen(s) is much longer than n. - */ memcpy(dup, mem, len); return dup; }