Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b02e6b09
Commit
b02e6b09
authored
Apr 26, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
May 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Threads should start off without having an impersonation token.
parent
35596ee2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
thread.c
server/thread.c
+1
-2
No files found.
server/thread.c
View file @
b02e6b09
...
...
@@ -147,6 +147,7 @@ inline static void init_thread_structure( struct thread *thread )
thread
->
creation_time
=
time
(
NULL
);
thread
->
exit_time
=
0
;
thread
->
desktop_users
=
0
;
thread
->
token
=
NULL
;
list_init
(
&
thread
->
mutex_list
);
list_init
(
&
thread
->
system_apc
);
...
...
@@ -188,8 +189,6 @@ struct thread *create_thread( int fd, struct process *process )
return
NULL
;
}
thread
->
token
=
(
struct
token
*
)
grab_object
(
process
->
token
);
set_fd_events
(
thread
->
request_fd
,
POLLIN
);
/* start listening to events */
add_process_thread
(
thread
->
process
,
thread
);
return
thread
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment