projects
/
git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
The second batch
[git]
/
run-command.c
diff --git
a/run-command.c
b/run-command.c
index
9942f12
..
f5e1149
100644
(file)
--- a/
run-command.c
+++ b/
run-command.c
@@
-213,8
+213,9
@@
static char *locate_in_PATH(const char *file)
static int exists_in_PATH(const char *file)
{
char *r = locate_in_PATH(file);
+ int found = r != NULL;
free(r);
- return
r != NULL
;
+ return
found
;
}
int sane_execvp(const char *file, char * const argv[])