Junio C Hamano wrote:
Scott R Parish <srp@xxxxxxxxxxxx> writes:
diff --git a/exec_cmd.c b/exec_cmd.c
index 8b681d0..c228dbf 100644
--- a/exec_cmd.c
+++ b/exec_cmd.c
@@ -29,85 +29,68 @@ const char *git_exec_path(void)
return builtin_exec_path;
}
+static void add_path(struct strbuf *out, const char *path)
+{
+ if (path && strlen(path)) {
I wonder if s/strlen(path)/*path/ micro-optimization is worth
doing. Ideally, if built-in strlen() is used, the compiler
should be clever enough to notice it, though...
You could always just check path[0] instead of calling strlen.
-Adam
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html