diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-07-12 07:51:04 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-07-12 07:51:04 +0000 |
commit | 50033ab97dd66fb1373aca9bbb50053640a18e73 (patch) | |
tree | 5504758da3675091a77541f33c70319740c05cbc /win32/win32.c | |
parent | 23268c55726c8c15e532ea9bd7aa56106f2c2279 (diff) | |
parent | 78ffc579fccea149ce13c268b422d661c9811f3a (diff) | |
download | perl-50033ab97dd66fb1373aca9bbb50053640a18e73.tar.gz |
Integrate mainline
p4raw-id: //depot/perlio@11294
Diffstat (limited to 'win32/win32.c')
-rw-r--r-- | win32/win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c index 50cf1c4cb3..85068b8966 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -3363,7 +3363,7 @@ win32_execvp(const char *cmdname, const char *const *argv) /* if this is a pseudo-forked child, we just want to spawn * the new program, and return */ if (w32_pseudo_id) - return win32_spawnvp(P_WAIT, cmdname, (char *const *)argv); + return my_exit(win32_spawnvp(P_WAIT, cmdname, (char *const *)argv)); #endif return execvp(cmdname, (char *const *)argv); } |