Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ec33cd69
Commit
ec33cd69
authored
Jan 17, 2001
by
Josh DuBois
Committed by
Alexandre Julliard
Jan 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SERVICE_CreateServiceTable still returned TRUE if CreateThread failed.
parent
598412ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
services.c
scheduler/services.c
+1
-7
No files found.
scheduler/services.c
View file @
ec33cd69
...
...
@@ -114,15 +114,9 @@ static BOOL SERVICE_CreateServiceTable( void )
* when installed
*/
service_thread
=
INVALID_HANDLE_VALUE
;
service_thread
=
CreateThread
(
NULL
,
0
,
(
LPTHREAD_START_ROUTINE
)
SERVICE_Loop
,
NULL
,
0
,
NULL
);
if
(
service_thread
==
INVALID_HANDLE_VALUE
)
{
service_thread
=
0
;
return
FALSE
;
}
return
TRUE
;
return
(
service_thread
!=
0
);
}
/***********************************************************************
...
...
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