Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
8991280f
Unverified
Commit
8991280f
authored
6 years ago
by
teor
Browse files
Options
Downloads
Plain Diff
Merge branch 'maint-0.4.0'
parents
57999e33
6d188fb4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/bug29874
+4
-0
4 additions, 0 deletions
changes/bug29874
src/lib/process/process_win32.c
+1
-6
1 addition, 6 deletions
src/lib/process/process_win32.c
with
5 additions
and
6 deletions
changes/bug29874
0 → 100644
+
4
−
0
View file @
8991280f
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.
This diff is collapsed.
Click to expand it.
src/lib/process/process_win32.c
+
1
−
6
View file @
8991280f
...
...
@@ -152,11 +152,6 @@ process_win32_exec(process_t *process)
HANDLE
stdin_pipe_read
=
NULL
;
HANDLE
stdin_pipe_write
=
NULL
;
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. */
SECURITY_ATTRIBUTES
security_attributes
;
...
...
@@ -211,7 +206,7 @@ process_win32_exec(process_t *process)
char
*
joined_argv
=
tor_join_win_cmdline
((
const
char
**
)
argv
);
/* Create the child process */
ret
=
CreateProcessA
(
filename
,
ret
=
CreateProcessA
(
NULL
,
joined_argv
,
NULL
,
NULL
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment