diff options
author | Jeff King <peff@peff.net> | 2015-09-24 17:08:03 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-05 11:08:05 -0700 |
commit | d59f765ac9b3d6fc2e6bea262222b80493055f12 (patch) | |
tree | 1909246830533d821b2e68dcca43fd5b15cccdad /ewah | |
parent | daemon: use cld->env_array when re-spawning (diff) | |
download | tgif-d59f765ac9b3d6fc2e6bea262222b80493055f12.tar.xz |
use sha1_to_hex_r() instead of strcpy
Before sha1_to_hex_r() existed, a simple way to get hex
sha1 into a buffer was with:
strcpy(buf, sha1_to_hex(sha1));
This isn't wrong (assuming the buf is 41 characters), but it
makes auditing the code base for bad strcpy() calls harder,
as these become false positives.
Let's convert them to sha1_to_hex_r(), and likewise for
some calls to find_unique_abbrev(). While we're here, we'll
double-check that all of the buffers are correctly sized,
and use the more obvious GIT_SHA1_HEXSZ constant.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ewah')
0 files changed, 0 insertions, 0 deletions