diff options
author | Christopher Faylor <me@cgf.cx> | 2010-04-27 23:06:48 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2010-04-27 23:06:48 +0000 |
commit | 9b53b52a80f79a7746f51e2092b23dfab3d50c6f (patch) | |
tree | 5e3f13e4b02c53c7de32eb81b640b31135af509d | |
parent | 0f6697b373128d8a7c179d3246a0fc5dbd8fa35d (diff) | |
download | newlib-9b53b52a80f79a7746f51e2092b23dfab3d50c6f.zip newlib-9b53b52a80f79a7746f51e2092b23dfab3d50c6f.tar.gz newlib-9b53b52a80f79a7746f51e2092b23dfab3d50c6f.tar.bz2 |
* spawn.cc (find_exec): Use the first detected errno when lookup fails.
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/spawn.cc | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 20ea015..7024ed2 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2010-04-27 Christopher Faylor <me+cygwin@cgf.cx> + + * spawn.cc (find_exec): Use the first detected errno when lookup fails. + 2010-04-27 Corinna Vinschen <corinna@vinschen.de> * include/regex.h: Include _ansi.h to avoid missing out on preprocessor diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc index c8b2fcf..e583f8f 100644 --- a/winsup/cygwin/spawn.cc +++ b/winsup/cygwin/spawn.cc @@ -173,7 +173,9 @@ find_exec (const char *name, path_conv& buf, const char *mywinenv, debug_printf ("trying %s", tmp); - if ((suffix = perhaps_suffix (tmp, buf, err, opt)) != NULL) + int err1; + + if ((suffix = perhaps_suffix (tmp, buf, err1, opt)) != NULL) { if (buf.has_acls () && check_file_access (buf, X_OK, true)) continue; |