diff options
Diffstat (limited to 'win32')
-rw-r--r-- | win32/process.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/win32/process.c b/win32/process.c index a7074ec75..2f8b6ce31 100644 --- a/win32/process.c +++ b/win32/process.c | |||
@@ -153,16 +153,8 @@ quote_arg(const char *arg) | |||
153 | char * | 153 | char * |
154 | find_first_executable(const char *name) | 154 | find_first_executable(const char *name) |
155 | { | 155 | { |
156 | char *tmp, *path = getenv("PATH"); | 156 | char *path = getenv("PATH"); |
157 | char *exe_path = NULL; | 157 | return find_executable(name, &path); |
158 | |||
159 | if (path) { | ||
160 | tmp = path = xstrdup(path); | ||
161 | exe_path = find_executable(name, &tmp); | ||
162 | free(path); | ||
163 | } | ||
164 | |||
165 | return exe_path; | ||
166 | } | 158 | } |
167 | 159 | ||
168 | static intptr_t | 160 | static intptr_t |