* spawn.cc (find_exec): Fix one more path where retval was not set.

This commit is contained in:
Christopher Faylor 2009-08-01 03:36:44 +00:00
parent 5f297dc330
commit a3a060b596
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-07-31 Christopher Faylor <me+cygwin@cgf.cx>
* spawn.cc (find_exec): Fix one more path where retval was not set.
2009-07-31 Christopher Faylor <me+cygwin@cgf.cx> 2009-07-31 Christopher Faylor <me+cygwin@cgf.cx>
* spawn.cc (find_exec): Stop relying on the ability to set retval to a * spawn.cc (find_exec): Stop relying on the ability to set retval to a

View File

@ -188,6 +188,7 @@ find_exec (const char *name, path_conv& buf, const char *mywinenv,
*eotmp++ = '/'; *eotmp++ = '/';
strcpy (eotmp, name); strcpy (eotmp, name);
} }
retval = buf.get_win32 ();
goto out; goto out;
} }
} }