execable: no need to check getenv for NULL, it works anyway.
This commit is contained in:
		| @@ -27,7 +27,7 @@ char *find_execable(const char *filename) | ||||
| { | ||||
| 	char *path, *p, *n; | ||||
|  | ||||
| 	p = path = xstrdup(getenv("PATH") ? : ""); | ||||
| 	p = path = xstrdup(getenv("PATH")); | ||||
| 	while (p) { | ||||
| 		n = strchr(p, ':'); | ||||
| 		if (n) | ||||
| @@ -59,4 +59,3 @@ int exists_execable(const char *filename) | ||||
| 	} | ||||
| 	return 0; | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user