diff options
author | Jeff King <peff@peff.net> | 2015-09-24 17:08:26 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-05 11:08:06 -0700 |
commit | eddda371449ba925d91d04c615d084adf1b43a33 (patch) | |
tree | a19c2df8b4502c0191e5261ca12ea5d0c6f8601a /vcs-svn/line_buffer.h | |
parent | 02e32b7debbcbe5910c11a515801751b349577d7 (diff) | |
download | git-eddda371449ba925d91d04c615d084adf1b43a33.tar.gz |
convert strncpy to memcpy
strncpy is known to be a confusing function because of its
termination semantics. These calls are all correct, but it
takes some examination to see why. In particular, every one
of them expects to copy up to the length limit, and then
makes some arrangement for terminating the result.
We can just use memcpy, along with noting explicitly how the
result is terminated (if it is not already obvious). That
should make it more clear to a reader that we are doing the
right thing.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'vcs-svn/line_buffer.h')
0 files changed, 0 insertions, 0 deletions