mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Merge remote-tracking branch 'tor-github/pr/835' into maint-0.4.0
This commit is contained in:
commit
6d188fb4cc
4
changes/bug29874
Normal file
4
changes/bug29874
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor bugfixes (pluggable transports):
|
||||||
|
- Restore old behaviour when it comes to discovering the path of a given
|
||||||
|
Pluggable Transport exe-file. Fixes bug 29874; bugfix on 0.4.0.1-alpha.
|
||||||
|
|
@ -152,11 +152,6 @@ process_win32_exec(process_t *process)
|
|||||||
HANDLE stdin_pipe_read = NULL;
|
HANDLE stdin_pipe_read = NULL;
|
||||||
HANDLE stdin_pipe_write = NULL;
|
HANDLE stdin_pipe_write = NULL;
|
||||||
BOOL ret = FALSE;
|
BOOL ret = FALSE;
|
||||||
const char *filename = process_get_command(process);
|
|
||||||
|
|
||||||
/* Not much we can do if we haven't been told what to start. */
|
|
||||||
if (BUG(filename == NULL))
|
|
||||||
return PROCESS_STATUS_ERROR;
|
|
||||||
|
|
||||||
/* Setup our security attributes. */
|
/* Setup our security attributes. */
|
||||||
SECURITY_ATTRIBUTES security_attributes;
|
SECURITY_ATTRIBUTES security_attributes;
|
||||||
@ -211,7 +206,7 @@ process_win32_exec(process_t *process)
|
|||||||
char *joined_argv = tor_join_win_cmdline((const char **)argv);
|
char *joined_argv = tor_join_win_cmdline((const char **)argv);
|
||||||
|
|
||||||
/* Create the child process */
|
/* Create the child process */
|
||||||
ret = CreateProcessA(filename,
|
ret = CreateProcessA(NULL,
|
||||||
joined_argv,
|
joined_argv,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
|
Loading…
Reference in New Issue
Block a user