summaryrefslogtreecommitdiff
path: root/diff.c
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2016-06-24 23:09:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-06-28 18:39:02 (GMT)
commitf449198e58630b8b57c94e3eeab4927afd7ee03a (patch)
tree50877158a6d9c79514fac50e2cb31af0a9b5c780 /diff.c
parentdb1d80b8faddc5d5702d79974c5757b464bcbaf6 (diff)
downloadgit-f449198e58630b8b57c94e3eeab4927afd7ee03a.zip
git-f449198e58630b8b57c94e3eeab4927afd7ee03a.tar.gz
git-f449198e58630b8b57c94e3eeab4927afd7ee03a.tar.bz2
coccinelle: convert hashcpy() with null_sha1 to hashclr()
hashcpy with null_sha1 as the source is equivalent to hashclr. In addition to being simpler, using hashclr may give the compiler a chance to optimize better. Convert instances of hashcpy with the source argument of null_sha1 to hashclr. This transformation was implemented using the following semantic patch: @@ expression E1; @@ -hashcpy(E1, null_sha1); +hashclr(E1); Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff.c')
-rw-r--r--diff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff.c b/diff.c
index fa78fc1..f223401 100644
--- a/diff.c
+++ b/diff.c
@@ -3134,7 +3134,7 @@ static void diff_fill_sha1_info(struct diff_filespec *one)
if (!one->sha1_valid) {
struct stat st;
if (one->is_stdin) {
- hashcpy(one->sha1, null_sha1);
+ hashclr(one->sha1);
return;
}
if (lstat(one->path, &st) < 0)