diff options
Diffstat (limited to '')
-rw-r--r-- | win32/process.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/win32/process.c b/win32/process.c index 137cb6a39..812e259f4 100644 --- a/win32/process.c +++ b/win32/process.c | |||
@@ -268,14 +268,6 @@ spawnveq(int mode, const char *path, char *const *argv, char *const *env) | |||
268 | new_path = xasprintf("%s.", path); | 268 | new_path = xasprintf("%s.", path); |
269 | } | 269 | } |
270 | 270 | ||
271 | #if defined(_UCRT) | ||
272 | if (env) { | ||
273 | char buffer[64]; | ||
274 | |||
275 | sprintf(buffer, "BB_HELLO_%d", getpid()); | ||
276 | SetEnvironmentVariable(buffer, "1"); | ||
277 | } | ||
278 | #endif | ||
279 | errno = 0; | 271 | errno = 0; |
280 | ret = spawnve(mode, new_path ? new_path : path, new_argv, env); | 272 | ret = spawnve(mode, new_path ? new_path : path, new_argv, env); |
281 | 273 | ||