From c815ab0acd9bb3f767a87d7096b872b341a91ddd Mon Sep 17 00:00:00 2001 From: K Jayatheerth Date: Mon, 2 Mar 2026 19:51:38 +0530 Subject: [PATCH] path: remove redundant function calls We fetch the exact same setting up to four times. We fix this by evaluating it once, storing it in a local variable, and referencing that variable. Signed-off-by: K Jayatheerth Signed-off-by: Junio C Hamano --- path.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/path.c b/path.c index 56be5e1726..5cd38b2a16 100644 --- a/path.c +++ b/path.c @@ -741,18 +741,18 @@ int calc_shared_perm(struct repository *repo, int mode) { int tweak; - - if (repo_settings_get_shared_repository(repo) < 0) - tweak = -repo_settings_get_shared_repository(repo); + int shared_repo = repo_settings_get_shared_repository(repo); + if (shared_repo < 0) + tweak = -shared_repo; else - tweak = repo_settings_get_shared_repository(repo); + tweak = shared_repo; if (!(mode & S_IWUSR)) tweak &= ~0222; if (mode & S_IXUSR) /* Copy read bits to execute bits */ tweak |= (tweak & 0444) >> 2; - if (repo_settings_get_shared_repository(repo) < 0) + if (shared_repo < 0) mode = (mode & ~0777) | tweak; else mode |= tweak;